zcap-spec-examples - v0.2.0
    Preparing search index...

    Interface ZcapSpecExamplesCliDeps

    interface ZcapSpecExamplesCliDeps {
        fetch: FetchLike;
        readStdin: () => Promise<string | undefined>;
        writeStdout: (chunk: string) => void;
        writeStderr: (chunk: string) => void;
    }
    Index
    fetch: FetchLike
    readStdin: () => Promise<string | undefined>

    Resolves the piped stdin content, or undefined if none was piped.

    writeStdout: (chunk: string) => void
    writeStderr: (chunk: string) => void