Datalayer VS Code Extension - v0.0.18
    Preparing search index...

    Tree data provider for the Datalayer Spaces view. Implements VS Code's TreeDataProvider interface to display spaces and documents with caching for improved performance.

    Implements

    Index
    onDidChangeTreeData: Event<void | SpaceItem> = ...

    An optional event to signal that an element or root has changed. This will trigger the view to update the changed element/root and its children recursively (if shown). To signal that root has changed, do not pass any argument or pass undefined or null.

    • Gets the tree item representation for display.

      Parameters

      • element: SpaceItem

        The SpaceItem to convert for display.

      Returns TreeItem

      The tree item for VS Code to display.

    • Refreshes a specific space in the tree.

      Parameters

      • spaceId: string

        ID of the space to refresh.

      Returns void