15 lines
305 B
JavaScript
15 lines
305 B
JavaScript
const STORAGE_LIMITS = Object.freeze({
|
|
name: 140,
|
|
color: 10000,
|
|
summary: 10000,
|
|
description: 49473, //the length of the Bee Movie script
|
|
inlineCalculationCount: 32,
|
|
errorCount: 32,
|
|
tagCount: 64,
|
|
tagLength: 140,
|
|
resourcesCount: 32,
|
|
calculation: 280,
|
|
});
|
|
|
|
export default STORAGE_LIMITS;
|