UNPKG

@speckle/shared

Version:

Shared code between various Speckle JS packages

40 lines 820 B
export type ProjectContext = { projectId: string; }; export type MaybeProjectContext = { projectId?: string; }; export type UserContext = { userId: string; }; export type MaybeUserContext = { userId?: string; }; export type WorkspaceContext = { workspaceId: string; }; export type MaybeWorkspaceContext = { workspaceId?: string; }; export type DashboardContext = { dashboardId: string; }; export type CommentContext = { commentId: string; }; export type ModelContext = { modelId: string; }; export type VersionContext = { versionId: string; }; export type AutomateFunctionContext = { functionId: string; }; export type SavedViewContext = { savedViewId: string; }; export type SavedViewGroupContext = { savedViewGroupId: string; }; //# sourceMappingURL=context.d.ts.map