8 lines
103 B
TypeScript
8 lines
103 B
TypeScript
|
|
interface ListDataText {
|
||
|
|
value: string;
|
||
|
|
label: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type{
|
||
|
|
ListDataText
|
||
|
|
}
|