coffee-ahk
Version:
coffeescript -> ahk
18 lines (17 loc) • 485 B
TypeScript
type Options = typeof DEFAULT_OPTIONS;
type PartialOptions = Partial<Options>;
declare const DEFAULT_OPTIONS: {
anonymous: boolean;
ast: boolean;
builtins: boolean;
coffeeAst: boolean;
comments: boolean;
metadata: boolean;
salt: string;
save: boolean;
string: boolean;
track: boolean;
verbose: boolean;
};
declare const main: (source: string, option?: PartialOptions) => string | Promise<string>;
export { main as default, PartialOptions };