coffee-ahk
Version:
coffeescript -> ahk
15 lines (14 loc) • 432 B
TypeScript
type Options = typeof DEFAULT_OPTIONS;
type PartialOptions = Partial<Options>;
declare const DEFAULT_OPTIONS: {
ast: boolean;
coffeeAst: boolean;
comments: boolean;
metadata: boolean;
salt: string;
save: boolean;
string: boolean;
verbose: boolean;
};
declare const transpile: (source: string, options?: PartialOptions) => Promise<string | undefined>;
export { transpile as default, PartialOptions };