UNPKG

coffee-ahk

Version:
15 lines (14 loc) 432 B
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 };