8 lines
111 B
TypeScript
8 lines
111 B
TypeScript
|
|
interface DataListsObject {
|
||
|
|
id: number;
|
||
|
|
count: number;
|
||
|
|
name: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { DataListsObject };
|