LsxLoadingContext.js 349 B

123456789101112131415161718
  1. /**
  2. * for storing loading context to sessionStorage
  3. */
  4. export class LsxLoadingContext {
  5. currentPagePath;
  6. tagExpression;
  7. fromPagePath;
  8. lsxArgs;
  9. constructor(obj) {
  10. this.currentPagePath = obj.currentPagePath;
  11. this.tagExpression = obj.tagExpression;
  12. this.fromPagePath = obj.fromPagePath;
  13. this.lsxArgs = obj.lsxArgs;
  14. }
  15. }