@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 {array} files
42
+ * @param {Array<string>} files
43
43
  * @returns {void}
44
44
  */
45
- addFiles(files: any[]): void;
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
- * @param {object} props
9
- * @returns {Constructor}
8
+ * @type {typeof Component}
10
9
  */
11
- export const ImportWrapper: typeof import("../component/component.js").Component;
10
+ export const ImportWrapper: typeof Component;
11
+ import { Component } from "../component/component.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.276",
3
+ "version": "3.0.277",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",