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

    Interface SpaceItemData

    Data associated with a space tree item. Uses SDK model instances directly without custom interfaces.

    interface SpaceItemData {
        document?: Document;
        error?: string;
        githubLogin?: string;
        space?: Space;
        spaceName?: string;
        type: ItemType;
        username?: string;
    }
    Index

    Properties

    document?: Document

    SDK Notebook or Lexical model instance (for NOTEBOOK/DOCUMENT types)

    error?: string

    Error message (for ERROR type)

    githubLogin?: string

    GitHub login of the authenticated user

    space?: Space

    SDK Space model instance (for SPACE type)

    spaceName?: string

    Name of the containing space

    type: ItemType

    Type of the tree item

    username?: string

    Username of the authenticated user