lisp-js-compiler
Version:
JavaScript compiler / interpreter for Lisp language
5 lines (4 loc) • 310 B
TypeScript
export declare const reduceAsync: (arr: any, fn: any, v0: any) => Promise<any>;
export declare const reduceRightAsync: (arr: any, fn: any, v0: any) => Promise<any>;
export declare const mapAsync: (arr: any, fn: any) => Promise<any[]>;
export declare const expArgs: (api: any, args: any) => Promise<any[]>;