expression-language.js
Version:
An engine for javascript that can compile and evaluate expressions written in typescript
15 lines • 506 B
TypeScript
export interface Runtime {
hasReference(property: string): boolean;
getReference(property: string): boolean;
setReference(property: string, value: any): void;
}
export declare class GenericRuntime implements Runtime {
private readonly context;
constructor(context: {
[key: string]: any;
});
hasReference(property: string): boolean;
getReference(property: string): boolean;
setReference(property: string, value: any): void;
}
//# sourceMappingURL=runtime.d.ts.map