@salesforce/core
Version:
Core libraries to interact with SFDX projects, orgs, and APIs.
11 lines (10 loc) • 352 B
TypeScript
/// <reference types="node" />
import { Writable } from 'stream';
/**
* Used by test setup to keep UT from writing to disk.
*/
export declare class MemoryLogger extends Writable {
loggedData: Array<Record<string, unknown>>;
constructor();
_write(chunk: Record<string, unknown>, encoding: string, callback: (err?: Error) => void): void;
}