@speckle/shared
Version:
Shared code between various Speckle JS packages
23 lines (13 loc) • 714 B
text/typescript
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 }