UNPKG

@salesforce/core

Version:

Core libraries to interact with SFDX projects, orgs, and APIs.

9 lines (8 loc) 290 B
/// <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; }