6 lines
88 B
TypeScript
6 lines
88 B
TypeScript
interface DataOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export type {DataOption};
|