mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
7 lines
280 B
TypeScript
7 lines
280 B
TypeScript
|
export type RowCount = number | 'hidden' | 'pending';
|
||
|
|
||
|
export type DataLimitStatus = null | 'approachingLimit' | 'gracePeriod' | 'deleteOnly';
|
||
|
|
||
|
// Ratio of the row/data size limit where we tell users that they're approaching the limit.
|
||
|
export const APPROACHING_LIMIT_RATIO = 0.9;
|