Files
yaak/src-web/components/core/tree/dnd.ts
2025-10-15 13:46:57 -07:00

9 lines
113 B
TypeScript

export enum ItemTypes {
TREE_ITEM = 'tree.item',
TREE = 'tree',
}
export type DragItem = {
id: string;
};