mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
13 lines
249 B
TypeScript
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 };
|
|
};
|