@salesforce/core
Version:
Core libraries to interact with SFDX projects, orgs, and APIs.
10 lines (9 loc) • 321 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
import { Readable } from 'stream';
export interface StructuredWriter {
addToStore(contents: string | Readable | Buffer, path: string): Promise<void>;
finalize(): Promise<void>;
getDestinationPath(): string | undefined;
get buffer(): Buffer;
}