Comparing version 3.1.1 to 3.2.0
export * from "./combine"; | ||
export * from "./dto"; | ||
export * from "./helpers"; | ||
@@ -15,2 +16,1 @@ export * from "./logical.js"; | ||
export * from "./types"; | ||
@@ -78,4 +78,4 @@ /** | ||
export type Thunk<T, Args extends any[] = any[]> = T | ((...args: Args) => T); | ||
export type ThunkAsync<T, Args extends any[] = any[]> = Thunk<T> | ((...args: Args) => Promise<T>); | ||
export type Thunk<T> = T | (() => T); | ||
export type ThunkAsync<T> = Thunk<T> | (() => Promise<T>) | ||
export type TypeThunk<T = any> = Thunk<Type<T>>; | ||
@@ -82,0 +82,0 @@ export type TypeThunkAsync<T = any> = ThunkAsync<Type<T>>; |
@@ -15,3 +15,3 @@ { | ||
], | ||
"version": "3.1.1", | ||
"version": "3.2.0", | ||
"types": "lib/index.d.ts", | ||
@@ -36,8 +36,8 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@types/jest": "^29.5.11", | ||
"eslint": "^8.56.0", | ||
"@types/jest": "^29.5.12", | ||
"eslint": "^8.57.0", | ||
"jest": "^29.7.0", | ||
"ts-jest": "^29.1.1", | ||
"typescript": "^5.3.3" | ||
"ts-jest": "^29.1.2", | ||
"typescript": "^5.4.2" | ||
} | ||
} |
32659
19
904