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

12 lines (10 loc) 271 B
import {type PaneNode} from '../types' export interface BaseStructureToolPaneProps<T extends PaneNode['type']> { paneKey: string index: number itemId: string childItemId?: string isSelected?: boolean isActive?: boolean pane: Extract<PaneNode, {type: T}> }