@diplodoc/sentenizer
Version:
text segmentation into sentences
11 lines (10 loc) • 519 B
TypeScript
import { Pred } from 'ramda';
export declare const charAt: (...args: unknown[]) => any;
export declare const notAlpha: (str: string) => boolean;
export declare const hasAlpha: (str: string) => boolean;
export declare const startsWithLower: Pred<any[]>;
export declare const startsWithUpper: Pred<any[]>;
export declare const startsWithNewline: Pred<any[]>;
export declare const startsWithHardbreak: Pred<any[]>;
export declare const endsWithHardbreak: Pred<any[]>;
export declare const isUpper: (a: string) => boolean;