mirror of
https://github.com/sbrow/strings.git
synced 2025-12-29 15:17:38 -05:00
4 lines
244 B
TypeScript
4 lines
244 B
TypeScript
export declare function sentencesLazy(str: string, pattern?: RegExp): Generator<string>;
|
|
export declare function sentences(str: string, pattern?: RegExp): string[];
|
|
export declare function countSentences(str: string, pattern?: RegExp): number;
|