5 lines
192 B
TypeScript
5 lines
192 B
TypeScript
|
export type RangeQueryParamType = [number, number];
|
||
|
export type SortQueryParamType = [string, string] | Array<[string, string]>;
|
||
|
export type FilterQueryParamType = {
|
||
|
[key: string]: unknown
|
||
|
}
|