14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
interface DataOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
interface DataOption2 {
|
|
id: number;
|
|
name: string;
|
|
}
|
|
|
|
interface DataDateMonthObject {
|
|
month: number;
|
|
year: number;
|
|
}
|
|
export type { DataOption, DataOption2, DataDateMonthObject };
|