@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface RecordingLogSink

    A log sink that keeps everything it receives, for assertions.

    interface RecordingLogSink {
        entries: readonly LogEntry[];
        sink: LogSink;
        at(
            level: "error" | "info" | "trace" | "debug" | "warn",
        ): readonly LogEntry[];
        clear(): void;
    }
    Index
    entries: readonly LogEntry[]

    Everything recorded so far, in order.

    sink: LogSink

    The sink to pass to the application.