7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
const COL_LESSON_TYPES = 'LessonsTypes';
|
|
const COL_LESSON_CATEGORIES = 'LessonsCategories';
|
|
const NO_VALUE = 'NO_VALUE';
|
|
const NO_NUM = -Infinity;
|
|
|
|
export { COL_LESSON_TYPES, NO_VALUE, NO_NUM, COL_LESSON_CATEGORIES };
|