Comparing version 0.7.7 to 0.7.8
@@ -13,5 +13,5 @@ import type { UnionToTuple } from './types.js'; | ||
[K in keyof T]: [K, T[K]]; | ||
}[keyof T]>; | ||
}[keyof T]> & [unknown, unknown][]; | ||
export declare function isJSON(str: string): boolean; | ||
export declare function resolveConstructors(object: object): string[]; | ||
export declare function map<const T extends Partial<Record<any, any>>>(items: T): Map<keyof T, T[keyof T]>; |
{ | ||
"name": "utilium", | ||
"version": "0.7.7", | ||
"version": "0.7.8", | ||
"description": "Typescript utilies", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -38,3 +38,3 @@ import type { UnionToTuple } from './types.js'; | ||
*/ | ||
export type Entries<T extends object> = UnionToTuple<{ [K in keyof T]: [K, T[K]] }[keyof T]>; | ||
export type Entries<T extends object> = UnionToTuple<{ [K in keyof T]: [K, T[K]] }[keyof T]> & [unknown, unknown][]; | ||
@@ -41,0 +41,0 @@ export function isJSON(str: string) { |
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
75383