7 lines
89 B
TypeScript
7 lines
89 B
TypeScript
interface DataOption {
|
|
id: number;
|
|
name: string;
|
|
}
|
|
|
|
|
|
export type { DataOption };
|