CorePermissionStatus.js 426 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.CorePermissionStatus = void 0;
  4. /**
  5. * @see https://developer.mozilla.org/en-US/docs/Web/API/PermissionStatus
  6. */
  7. class CorePermissionStatus {
  8. constructor(state, name = '') {
  9. this.name = name;
  10. this.state = state;
  11. }
  12. }
  13. exports.CorePermissionStatus = CorePermissionStatus;
  14. //# sourceMappingURL=CorePermissionStatus.js.map