mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
import * as jade from 'jade';
|
|
|
|
jade.compile("b")();
|
|
jade.compileFile("foo.jade", {})();
|
|
jade.compileClient("a")({ a: 1 });
|
|
jade.compileClientWithDependenciesTracked("test").body();
|
|
jade.render("h1", {});
|
|
jade.renderFile("foo.jade");
|