downthemall/uikit/lib/constants.ts
2019-08-20 16:41:37 +02:00

13 lines
235 B
TypeScript

/* eslint-disable no-unused-vars */
"use strict";
// License: MIT
export enum CellTypes {
TYPE_TEXT = 1 << 0,
TYPE_CHECK = 1 << 1,
TYPE_PROGRESS = 1 << 2,
}
export const ROW_CACHE_SIZE = 5000;
export const ROW_REUSE_SIZE = 20;