File size: 214 Bytes
eeccf89
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import type { LoadingStatus } from "@gradio/statustracker";

export interface DraggableProps {
	orientation: "row" | "column";
	show_progress: boolean;
}

export interface DraggableEvents {
	clear_status: never;
}