File size: 363 Bytes
f4888d9 b6cebd4 f4888d9 b6cebd4 f4888d9 b6cebd4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import type { CustomButton } from "@gradio/utils";
export interface DateTimeProps {
value: string;
include_time: boolean;
type: "timestamp" | "datetime" | "string";
timezone: string | null;
info: string;
buttons: (string | CustomButton)[] | null;
}
export interface DateTimeEvents {
change: never;
submit: never;
custom_button_click: { id: number };
}
|