Files
virtual-threads-experiences/k6-example/src/data/marketplace.ts
Florian THIERRY 193fcc1596 Add k6 tests
2025-09-19 17:41:46 +02:00

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[]
}