4 lines
230 B
TypeScript
4 lines
230 B
TypeScript
declare function getGraphemeCountModern(text: string): number;
|
|
/** Returns the number of graphemes (basically characters) present in {@link text}. */
|
|
export declare const getGraphemeCount: typeof getGraphemeCountModern;
|
|
export {}; |