File size: 229 Bytes
e9aeafd
 
 
 
 
 
 
 
 
 
 
 
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;
}