ern-api-gen
Version:
Electrode Native API generator
16 lines • 428 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class CodegenResponse {
constructor() {
this.headers = [];
this.isBinary = false;
}
isWildcard() {
return '0' === this.code || 'default' === this.code;
}
toString() {
return `${this.code}(${this.containerType})`;
}
}
exports.default = CodegenResponse;
//# sourceMappingURL=CodegenResponse.js.map