UNPKG

572 BTypeScriptView Raw
1import { File } from "../File";
2import { Project } from "../Project";
3/**
4 * Use as a diagnostic step in an editor chain.
5 * No op that dumps file information to the console.
6 * @param stepName identification of the step in the process we're up to
7 * @param globPattern optional glob pattern to select files. Match all if not supplied
8 * @param stringifier function to convert files to strings. Default uses path
9 */
10export declare function diagnosticDump(stepName: string, globPattern?: string, stringifier?: (f: File) => string): (project: Project) => Promise<Project>;