MCPcopy
hub / github.com/firecow/gitlab-ci-local / WriteStreams

Interface WriteStreams

src/write-streams.ts:1–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export interface WriteStreams {
2 stdout: (txt: string) => void;
3 memoStdout: (txt: string) => void;
4 stderr: (txt: string) => void;
5 flush: () => void;
6}
7
8abstract class AbstractWriteStreams implements WriteStreams {
9 abstract stdout (txt: string): void;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected