@base-framework/ui 1.2.9 → 1.2.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @typedef {new (...args: any[]) => Component} VeilComponentConstructor
|
|
2
|
+
* @typedef {((...args: any[]) => Component) & (new (...args: any[]) => Component)} VeilComponentConstructor
|
|
3
3
|
*/
|
|
4
4
|
/**
|
|
5
5
|
* Veil Component
|
|
@@ -21,5 +21,5 @@ export class Veil extends Component {
|
|
|
21
21
|
setContext(context: object | null): object | null;
|
|
22
22
|
}
|
|
23
23
|
export function VeilJot(props: any): VeilComponentConstructor;
|
|
24
|
-
export type VeilComponentConstructor = new (...args: any[]) => Component;
|
|
24
|
+
export type VeilComponentConstructor = ((...args: any[]) => Component) & (new (...args: any[]) => Component);
|
|
25
25
|
import { Component } from "@base-framework/base";
|
package/package.json
CHANGED