bpms_site/.svn/pristine/f3/f326373acae468a89317f3fe7b6fd02ddd6a2c03.svn-base
2025-11-02 16:38:49 +03:30

7 lines
203 B
Plaintext

/**
* Get sequences of words and whitespaces from a string.
*
* e.g. "Hello world \n\n" -> ["Hello", " ", "world", " \n\n"]
*/
export declare function getWordsAndWhitespaces(text: string): string[];