10 lines
142 B
TypeScript
10 lines
142 B
TypeScript
|
|
interface DataNumObject {
|
||
|
|
id: number;
|
||
|
|
count: number;
|
||
|
|
name: string;
|
||
|
|
color: string;
|
||
|
|
}
|
||
|
|
export type {
|
||
|
|
DataNumObject,
|
||
|
|
|
||
|
|
};
|