@sap/generator-cap-project
Version:
Creates a new SAP Cloud Application Programming Model project.
9 lines (8 loc) • 327 B
TypeScript
/// <reference types="node" resolution-mode="require"/>
import type { MemFsEditor } from '../index.js';
export type AppendOptions = {
create?: boolean;
trimEnd?: boolean;
separator?: string;
};
export default function append(this: MemFsEditor, to: string, contents: string | Buffer, options?: AppendOptions): void;