Documentation
    Preparing search index...
    interface FrontendApiFunctionMap {
        addData: (
            entries: InputEntry[],
            config: ShopAddDataConfig,
        ) => ExternalAddResult[];
        addLayereds: (
            inputs: readonly Readonly<TwoDimInput>[],
        ) => ExternalAddResult[];
        addSimplePart: (p: PartCreationInformation) => void;
        addUserDefinedTube: (u: UserDefinedTubeCreationInformation) => boolean;
        applyChangesToVertices: (data: RootIdKeyWithChangeData[]) => ApplyResult;
        changeProjectName: (name: string) => boolean;
        clearGraph: () => void;
        createProjectObject: (
            nodeIdKeys: string[],
            previewPriceProcessIds: string[],
        ) => ProjectObject;
        deleteNodes: (vertexKeys: string[]) => boolean;
        shopConfiguration: () => ShopConfig;
    }

    Hierarchy (View Summary)

    Index

    Properties

    addData: (
        entries: InputEntry[],
        config: ShopAddDataConfig,
    ) => ExternalAddResult[]
    addLayereds: (inputs: readonly Readonly<TwoDimInput>[]) => ExternalAddResult[]
    addSimplePart: (p: PartCreationInformation) => void
    addUserDefinedTube: (u: UserDefinedTubeCreationInformation) => boolean
    applyChangesToVertices: (data: RootIdKeyWithChangeData[]) => ApplyResult
    changeProjectName: (name: string) => boolean
    clearGraph: () => void
    createProjectObject: (
        nodeIdKeys: string[],
        previewPriceProcessIds: string[],
    ) => ProjectObject
    deleteNodes: (vertexKeys: string[]) => boolean
    shopConfiguration: () => ShopConfig