frontend/.pnpm-store/v3/files/16/1ade4774a2594123bcb5903f948944d629f2c00b78395361400e9e1b3c828978c5b6c01f123df5462e2ebbd571b38442ccf73f59fcbc1978b05583f98b1d8b-exec

14 lines
475 B
Plaintext
Executable File

import { __extends } from "tslib";
var MissingLocaleDataError = /** @class */ (function (_super) {
__extends(MissingLocaleDataError, _super);
function MissingLocaleDataError() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = 'MISSING_LOCALE_DATA';
return _this;
}
return MissingLocaleDataError;
}(Error));
export function isMissingLocaleDataError(e) {
return e.type === 'MISSING_LOCALE_DATA';
}