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