lordwelch 6fab6022d0 Remove grab
Switch to using bootstrap-table
Add DownThemAll plugin
Remove Firefox plugin
2021-01-09 16:36:18 -08: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;