@trackunit/shared-utils 0.0.60-alpha-05e60997159.0 → 0.0.60
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/package.json +1 -1
- package/src/typeUtils.d.ts +1 -1
package/package.json
CHANGED
package/src/typeUtils.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export type MakePropertiesUnion<TOriginal, TUnion> = {
|
|
|
61
61
|
export type DeepPartial<TObject> = TObject extends Record<PropertyKey, unknown> ? {
|
|
62
62
|
[Key in keyof TObject]?: DeepPartial<TObject[Key]>;
|
|
63
63
|
} : TObject;
|
|
64
|
-
type Entries<TObject> = {
|
|
64
|
+
export type Entries<TObject> = {
|
|
65
65
|
[Key in keyof TObject]: [Key, TObject[Key]];
|
|
66
66
|
}[keyof TObject][];
|
|
67
67
|
type KeyValueTupleToObject<TEntries extends readonly (readonly [PropertyKey, unknown])[]> = {
|