@sap/generator-cap-project
Version:
Creates a new SAP Cloud Application Programming Model project.
12 lines (11 loc) • 408 B
TypeScript
/// <reference types="node" resolution-mode="require"/>
import type { MemFsEditor } from '../index.js';
declare function read(this: MemFsEditor, filepath: string, options?: {
raw?: boolean;
defaults?: string | null;
}): string | null;
declare function read(this: MemFsEditor, filepath: string, options: {
raw?: true;
defaults?: Buffer | null;
}): Buffer | string | null;
export default read;