15 lines
229 B
TypeScript
15 lines
229 B
TypeScript
export interface Catalog {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface Item {
|
|
id: string;
|
|
name: string;
|
|
isShared: boolean;
|
|
}
|
|
|
|
export interface Marketplace {
|
|
catalogs: Catalog[];
|
|
sharedItems: Item[]
|
|
} |