@base-framework/base 3.5.19 → 3.5.21

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.
@@ -43,7 +43,7 @@ export class BasicData {
43
43
  * @default {}
44
44
  * @protected
45
45
  */
46
- protected links: {};
46
+ protected links: Map<any, any>;
47
47
  /**
48
48
  * @member {string} dataTypeId
49
49
  */
@@ -13,9 +13,9 @@ export class State extends SimpleData {
13
13
  *
14
14
  * @param {string} action
15
15
  * @param {*} state
16
- * @returns {void}
16
+ * @returns {object} self
17
17
  */
18
- addAction(action: string, state: any): void;
18
+ addAction(action: string, state: any): object;
19
19
  /**
20
20
  * This will get the state of an action.
21
21
  *
@@ -30,8 +30,8 @@ export class State extends SimpleData {
30
30
  *
31
31
  * @param {string} action
32
32
  * @param {string} [token]
33
- * @returns {void}
33
+ * @returns {object} self
34
34
  */
35
- removeAction(action: string, token?: string): void;
35
+ removeAction(action: string, token?: string): object;
36
36
  }
37
37
  import { SimpleData } from '../data/data.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.5.19",
3
+ "version": "3.5.21",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",