Spaces:
Running
Running
File size: 324 Bytes
5c05829 | 1 2 3 4 5 6 7 8 9 10 11 | "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.EmailJSResponseStatus = void 0;
class EmailJSResponseStatus {
constructor(_status = 0, _text = 'Network Error') {
this.status = _status;
this.text = _text;
}
}
exports.EmailJSResponseStatus = EmailJSResponseStatus;
|