utilium 2.3.8 → 2.3.10

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/list.d.ts CHANGED
@@ -2,7 +2,7 @@ import { EventEmitter } from 'eventemitter3';
2
2
  export declare class List<T> extends EventEmitter<{
3
3
  update: [];
4
4
  add: [T];
5
- }> implements RelativeIndexable<T> {
5
+ }> {
6
6
  readonly [Symbol.toStringTag] = "List";
7
7
  constructor(values?: readonly T[] | Iterable<T> | null);
8
8
  protected data: Set<T>;
package/dist/types.d.ts CHANGED
@@ -36,7 +36,7 @@ export type RequiredProperties<T extends object, K extends keyof T = keyof T> =
36
36
  * @see https://dev.to/tmhao2005/ts-useful-advanced-types-3k5e
37
37
  */
38
38
  export type DeepRequired<T> = {
39
- [K in keyof T]: Required<DeepRequired<T[K]>>;
39
+ [K in keyof T]-?: DeepRequired<T[K]>;
40
40
  };
41
41
  /**
42
42
  * @see https://dev.to/tmhao2005/ts-useful-advanced-types-3k5e
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "utilium",
3
- "version": "2.3.8",
3
+ "version": "2.3.10",
4
4
  "description": "Typescript utilities",
5
5
  "funding": {
6
6
  "type": "individual",