UNPKG

@salesforce/core

Version:

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

8 lines (7 loc) 262 B
import { Readable } from 'node:stream'; export type StructuredWriter = { addToStore(contents: string | Readable | Buffer, path: string): Promise<void>; finalize(): Promise<void>; getDestinationPath(): string | undefined; get buffer(): Buffer; };