| 123456789101112131415161718 |
- /**
- * for storing loading context to sessionStorage
- */
- export class LsxLoadingContext {
- currentPagePath;
- tagExpression;
- fromPagePath;
- lsxArgs;
- constructor(obj) {
- this.currentPagePath = obj.currentPagePath;
- this.tagExpression = obj.tagExpression;
- this.fromPagePath = obj.fromPagePath;
- this.lsxArgs = obj.lsxArgs;
- }
- }
|