mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-19 14:17:53 +01:00
9 lines
113 B
TypeScript
9 lines
113 B
TypeScript
export enum ItemTypes {
|
|
TREE_ITEM = 'tree.item',
|
|
TREE = 'tree',
|
|
}
|
|
|
|
export type DragItem = {
|
|
id: string;
|
|
};
|