// Type definitions for jsonnet // Project: https://github.com/yosuke-furukawa/node-jsonnet // Definitions by: Hookclaw // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare module "jsonnet" { class Jsonnet { constructor(); eval(code: string): any; evalFile(): any; destroy(): void; } export = Jsonnet; }