UNPKG

@xyflow/system

Version:

xyflow core system that powers React Flow and Svelte Flow.

8 lines 238 B
import { Rect } from '../types'; export type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>; export type ParentExpandChild = { id: string; parentId: string; rect: Rect; }; //# sourceMappingURL=types.d.ts.map