@koalarx/nest 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,17 +0,0 @@
1
- export type QueryDirectionType = 'asc' | 'desc';
2
- export declare const QueryFilterParams: {
3
- direction: QueryDirectionType;
4
- page: number;
5
- limit: number;
6
- };
7
- export type PaginatedRequestProps<T extends PaginationParams> = Omit<{
8
- [K in keyof T as T[K] extends Function ? never : K]: T[K];
9
- }, '_id'>;
10
- export declare class PaginationParams {
11
- page?: number;
12
- limit?: number;
13
- orderBy?: string;
14
- direction?: QueryDirectionType;
15
- skip(): number;
16
- generateOrderBy(): {} | undefined;
17
- }