@base-framework/base 3.0.165 → 3.0.166
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.
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* This will create a route.
|
|
5
5
|
*
|
|
6
6
|
* @class
|
|
7
|
-
* @augments
|
|
7
|
+
* @augments BasicData
|
|
8
8
|
*/
|
|
9
|
-
export class Route extends
|
|
9
|
+
export class Route extends BasicData {
|
|
10
10
|
/**
|
|
11
11
|
* This will create a route.
|
|
12
12
|
*
|
|
@@ -116,5 +116,5 @@ export class Route extends SimpleData {
|
|
|
116
116
|
*/
|
|
117
117
|
getParams(): object;
|
|
118
118
|
}
|
|
119
|
-
import {
|
|
119
|
+
import { BasicData } from '../../data/types/basic-data.js';
|
|
120
120
|
import { ComponentHelper } from './component-helper.js';
|