quetch 0.1.2 → 0.2.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.
- package/dist/types.d.ts +1 -1
- package/lib/types.ts +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -246,7 +246,7 @@ export type Order<T extends object> = keyof T | {
|
|
|
246
246
|
field: keyof T;
|
|
247
247
|
descending?: boolean;
|
|
248
248
|
};
|
|
249
|
-
type FilterKeys<T extends object, P> = {
|
|
249
|
+
export type FilterKeys<T extends object, P> = {
|
|
250
250
|
[K in keyof T]-?: T[K] extends P ? K : never;
|
|
251
251
|
}[keyof T];
|
|
252
252
|
export type FieldFunction<T extends object> = FieldFunctionCustom<T> | FieldFunctionFormatDate<T>;
|
package/lib/types.ts
CHANGED