Files
2026-05-09 12:19:29 -06:00

5 lines
242 B
TypeScript

declare const getCodePointsLength: (input: string) => number;
declare const isFullWidth: (x: number) => boolean;
declare const isWideNotCJKTNotEmoji: (x: number) => boolean;
export { getCodePointsLength, isFullWidth, isWideNotCJKTNotEmoji };