File size: 229 Bytes
4729b5d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
export interface DateTimeProps {
	value: string;
	include_time: boolean;
	type: "timestamp" | "datetime" | "string";
	timezone: string | null;
	info: string;
}

export interface DateTimeEvents {
	change: never;
	submit: never;
}