mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
400 B
TypeScript
14 lines
400 B
TypeScript
// Type definitions for jsonnet
|
|
// Project: https://github.com/yosuke-furukawa/node-jsonnet
|
|
// Definitions by: Hookclaw <https://github.com/hookclaw>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
declare module "jsonnet" {
|
|
class Jsonnet {
|
|
constructor();
|
|
eval(code: string): any;
|
|
evalFile(): any;
|
|
destroy(): void;
|
|
}
|
|
export = Jsonnet;
|
|
}
|