mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-08-29 04:32:06 -04:00
12 lines
196 B
TypeScript
12 lines
196 B
TypeScript
|
|
export type StoreFilterOption = {
|
||
|
|
name: string;
|
||
|
|
param: string;
|
||
|
|
options: Array<StoreSortOption>;
|
||
|
|
multiple?: boolean;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type StoreSortOption = {
|
||
|
|
name: string;
|
||
|
|
param: string;
|
||
|
|
};
|