UNPKG

240 BTypeScriptView Raw
1import { FileHandler } from './file';
2export interface HandlerPlugin {
3 (file: FileHandler): Promise<string>;
4}
5export declare function preprocessTSFiles(entryFilePath: string, destDir: string, baseDir?: string): Promise<FileHandler[]>;