UNPKG

@scurrlin/stencil

Version:

A memorization tool that strips code down to first letters and punctuation only.

8 lines (7 loc) 265 B
interface TransformOptions { startLine?: number | null; endLine?: number | null; } export declare function transformFile(filePath: string, options?: TransformOptions): Promise<string>; export declare function transformLine(line: string): string; export {};