mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-02-15 05:32:40 +00:00
9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
// Domain constants
|
|
export const AVG_WORD_LENGTH = 5;
|
|
export const SECONDS_IN_MINUTE = 60;
|
|
export const MILLIS_IN_SECOND = 1000;
|
|
|
|
// Error messages.
|
|
export const TOO_SHORT_SENTENCE_FOR_NGRAMS_MESSAGE =
|
|
"The sentence is too short to make N-Grams, please enter longer sentence";
|