Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 行
485 B
TypeScript
15 行
485 B
TypeScript
import type { ITerminalChunk } from './ITerminalChunk';
|
|
import { TerminalWritable } from './TerminalWritable';
|
|
/**
|
|
* A {@link TerminalWritable} subclass for use by unit tests.
|
|
*
|
|
* @beta
|
|
*/
|
|
export declare class MockWritable extends TerminalWritable {
|
|
readonly chunks: ITerminalChunk[];
|
|
protected onWriteChunk(chunk: ITerminalChunk): void;
|
|
reset(): void;
|
|
getAllOutput(): string;
|
|
getFormattedChunks(): ITerminalChunk[];
|
|
}
|
|
//# sourceMappingURL=MockWritable.d.ts.map
|