UNPKG

@sinclair/hammer

Version:

Build Tool for Browser and Node Applications

8 lines (7 loc) 226 B
export interface CompileResult { filename: string; dirname: string; code: string; } /** Compiles the given code into single executable script. */ export declare function compile(scriptPath: string): CompileResult;