7 lines
97 B
TypeScript
7 lines
97 B
TypeScript
interface Category {
|
|
id: string;
|
|
name: string;
|
|
img: string;
|
|
}
|
|
|
|
export type {Category} |