@gdacm/base-types 0.1.19 → 0.1.20

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -26,5 +26,8 @@ export type PartialMetaOptions<T extends GenericOptions> = GenericOptions & Part
26
26
  export type MetaOptions<T extends GenericOptions> = GenericOptions & T;
27
27
  export type GenericMetaOptions = MetaOptions<GenericOptions>;
28
28
  export type DashboardMetaOptions = MetaOptions<DashboardOptions>;
29
- export type MetaConstructor<T> = new (metaOptions: GenericMetaOptions) => T;
29
+ export type MetaConstructor<T> = {
30
+ new (metaOptions: GenericMetaOptions): T;
31
+ prototype: T;
32
+ };
30
33
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gdacm/base-types",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "author": "gissehel",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",