this.gui
    Preparing search index...

    Type Alias GuiPartsSpec<TPart, TRootProps>

    type GuiPartsSpec<
        TPart extends string = string,
        TRootProps extends GuiNodeProps = GuiNodeProps,
    > = {
        parts?: GuiPartSpec<TPart, GuiNodeProps>[];
        root: {
            id: string;
            props?: TRootProps;
            provenance?: GuiNodeProvenance;
            type: string;
        };
    }

    Type Parameters

    • TPart extends string = string
    • TRootProps extends GuiNodeProps = GuiNodeProps
    Index

    Properties

    Properties

    parts?: GuiPartSpec<TPart, GuiNodeProps>[]
    root: {
        id: string;
        props?: TRootProps;
        provenance?: GuiNodeProvenance;
        type: string;
    }