UNPKG

sanity

Version:

Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches

13 lines (9 loc) 339 B
import {type Path} from '@sanity/types' import {type BaseStructureToolPaneProps} from '../types' /** @internal */ export type TimelineMode = 'since' | 'rev' | 'closed' /** @internal */ export type DocumentPaneProviderProps = { children?: React.ReactNode onFocusPath?: (path: Path) => void } & BaseStructureToolPaneProps<'document'>