@sap/generator-cap-project
Version:
Creates a new SAP Cloud Application Programming Model project.
8 lines (7 loc) • 356 B
TypeScript
import type { MemFsEditor, MemFsEditorFile } from '../index.js';
export type MemFsEditorFileDump = {
contents: string | null;
state?: string;
stateCleared?: string;
};
export default function <EditorFile extends MemFsEditorFile>(this: MemFsEditor<EditorFile>, cwd?: string, filter?: string | ((file: EditorFile, cwd: string) => boolean)): any;