UNPKG

@xyflow/react

Version:

React Flow - A highly customizable React library for building node-based editors and interactive flow charts.

7 lines 213 B
export type QueueItem<T> = T[] | ((items: T[]) => T[]); export type Queue<T> = { get: () => QueueItem<T>[]; reset: () => void; push: (item: QueueItem<T>) => void; }; //# sourceMappingURL=types.d.ts.map