@base-framework/base 3.0.276 → 3.0.277
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.
|
@@ -39,10 +39,10 @@ export class Group {
|
|
|
39
39
|
/**
|
|
40
40
|
* This will add the dependencies to the document.
|
|
41
41
|
*
|
|
42
|
-
* @param {
|
|
42
|
+
* @param {Array<string>} files
|
|
43
43
|
* @returns {void}
|
|
44
44
|
*/
|
|
45
|
-
addFiles(files:
|
|
45
|
+
addFiles(files: Array<string>): void;
|
|
46
46
|
/**
|
|
47
47
|
* This will update the progress.
|
|
48
48
|
*
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* will wrap the comment atom to pass route to the
|
|
6
6
|
* imported layout.
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
9
|
-
* @returns {Constructor}
|
|
8
|
+
* @type {typeof Component}
|
|
10
9
|
*/
|
|
11
|
-
export const ImportWrapper: typeof
|
|
10
|
+
export const ImportWrapper: typeof Component;
|
|
11
|
+
import { Component } from "../component/component.js";
|