mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-21 08:33:26 +08:00
11 lines
361 B
TypeScript
11 lines
361 B
TypeScript
// Type definitions for static-eval v0.2.4
|
|
// Project: https://github.com/substack/static-eval
|
|
// Definitions by: Ben Liddicott <https://github.com/benliddicott/DefinitelyTyped>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
|
|
declare module 'static-eval' {
|
|
function evaluate(ast, vars: { [name: string]: any });
|
|
export =evaluate;
|
|
}
|