Files
drop/app/composables/store.ts
2025-09-20 11:21:53 +10:00

13 lines
249 B
TypeScript

export type StoreFilterOption = {
name: string;
param: string;
options: Array<StoreSortOption>;
multiple?: boolean;
};
export type StoreSortOption = {
name: string;
param: string;
platformIcon?: { key: string; fallback?: string };
};