DefinitelyTyped/types/jsonnet/index.d.ts
2017-03-24 14:27:52 -07:00

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;
}