@gdacm/base-types 0.1.18 → 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.
- package/dist/index.d.ts +4 -1
- 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> =
|
|
29
|
+
export type MetaConstructor<T> = {
|
|
30
|
+
new (metaOptions: GenericMetaOptions): T;
|
|
31
|
+
prototype: T;
|
|
32
|
+
};
|
|
30
33
|
export {};
|