@antv/s2
Version:
effective spreadsheet render core lib
17 lines • 727 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsyncRequestThreshold = exports.AsyncRenderThreshold = exports.CSV_SEPARATOR = exports.TAB_SEPARATOR = exports.LINE_SEPARATOR = exports.CopyType = void 0;
var CopyType;
(function (CopyType) {
CopyType[CopyType["ALL"] = 0] = "ALL";
CopyType[CopyType["COL"] = 1] = "COL";
CopyType[CopyType["ROW"] = 2] = "ROW";
})(CopyType || (exports.CopyType = CopyType = {}));
exports.LINE_SEPARATOR = '\r\n';
exports.TAB_SEPARATOR = '\t';
exports.CSV_SEPARATOR = ',';
// 每次异步渲染数据的阈值
exports.AsyncRenderThreshold = 5000;
// 选择异步请求的阈值
exports.AsyncRequestThreshold = 100000;
//# sourceMappingURL=copy.js.map