util.d.ts 202 B

1234
  1. export type CharPredicate = (char: string) => boolean;
  2. export declare const isLetter: CharPredicate;
  3. export declare const isWhitespace: CharPredicate;
  4. export declare const isPunctuation: CharPredicate;