UNPKG

@speckle/shared

Version:

Shared code between various Speckle JS packages

12 lines (9 loc) 283 B
import { SavedView, SavedViewGroup } from './types.js' export type GetSavedView = (args: { projectId: string savedViewId: string }) => Promise<SavedView | null> export type GetSavedViewGroup = (args: { projectId: string groupId: string }) => Promise<SavedViewGroup | null>