@bunt/type
Advanced tools
Comparing version 0.1.0 to 0.27.0
@@ -1,2 +0,2 @@ | ||
export type Promisify<T> = T | Promise<T>; | ||
export type Promisify<T> = T | Promise<T> | PromiseLike<T>; | ||
export type Ctor<T = any, A extends any[] = any[]> = new (...args: A) => T; | ||
@@ -11,4 +11,5 @@ export type Newable<T = any> = NewableFunction & { | ||
export type MayNullable<T> = T | null | undefined; | ||
export type Nullable<T> = T | null | undefined; | ||
export type Fn<A extends any[] = [], R = void> = (...args: A) => R; | ||
export type KeyOf<T extends Record<string, any>> = Exclude<keyof T, number | symbol>; | ||
//# sourceMappingURL=common.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export type Promisify<T> = T | Promise<T>; | ||
export type Promisify<T> = T | Promise<T> | PromiseLike<T>; | ||
export type Ctor<T = any, A extends any[] = any[]> = new (...args: A) => T; | ||
@@ -11,4 +11,5 @@ export type Newable<T = any> = NewableFunction & { | ||
export type MayNullable<T> = T | null | undefined; | ||
export type Nullable<T> = T | null | undefined; | ||
export type Fn<A extends any[] = [], R = void> = (...args: A) => R; | ||
export type KeyOf<T extends Record<string, any>> = Exclude<keyof T, number | symbol>; | ||
//# sourceMappingURL=common.d.ts.map |
{ | ||
"name": "@bunt/type", | ||
"version": "0.1.0", | ||
"version": "0.27.0", | ||
"keywords": [ | ||
@@ -35,3 +35,4 @@ "typescript" | ||
}, | ||
"license": "MIT" | ||
"license": "MIT", | ||
"gitHead": "ed8a1abf168ea3ed94209268406d2b8e9834a5a5" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
82856
29
66