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

    Interface FakeTreeView

    One fake tree view registration.

    interface FakeTreeView {
        disposed: boolean;
        id: string;
        options: TreeViewOptionsLike;
        source: TreeDataSource<never>;
    }
    Index
    disposed: boolean
    id: string
    source: TreeDataSource<never>

    The source handed to the platform, exactly as resolved.

    Drivable directly: a source is vscode-free, so a test can call getChildren, getTreeItem and reportCheckboxChange on it without a view existing at all.