mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-23 19:15:00 +01:00
10 lines
135 B
TypeScript
10 lines
135 B
TypeScript
export enum ItemTypes {
|
|
REQUEST = 'request',
|
|
SIDEBAR = 'sidebar',
|
|
}
|
|
|
|
export type DragItem = {
|
|
id: string;
|
|
itemName: string;
|
|
};
|