@jingbof/rets-client
Version:
RETS (Real Estate Transaction Standards) Client in Typescript
19 lines • 566 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RetsFormat = void 0;
var RetsFormat;
(function (RetsFormat) {
/**
* Compact data (usually TSV)
*/
RetsFormat["Compact"] = "COMPACT";
/**
* Compact decoded data (usually TSV)
*/
RetsFormat["CompactDecoded"] = "COMPACT-DECODED";
/**
* Standard XML data (server may not support)
*/
RetsFormat["StandardXml"] = "STANDARD-XML";
})(RetsFormat = exports.RetsFormat || (exports.RetsFormat = {}));
//# sourceMappingURL=RetsFormat.js.map