UNPKG

@speckle/shared

Version:

Shared code between various Speckle JS packages

10 lines 336 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>; //# sourceMappingURL=operations.d.ts.map