@speckle/shared
Version:
Shared code between various Speckle JS packages
15 lines (9 loc) • 474 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 CommentContext = { commentId: string }
export type ModelContext = { modelId: string }
export type VersionContext = { versionId: string }