Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
22 lines
866 B
Plaintext
22 lines
866 B
Plaintext
export declare const classes: {
|
|
[key: string]: number;
|
|
};
|
|
export declare const toCodePoints: (str: string) => number[];
|
|
export declare const fromCodePoint: (...codePoints: number[]) => string;
|
|
export declare const UnicodeTrie: import("utrie").Trie;
|
|
export declare const BREAK_NOT_ALLOWED = "\u00D7";
|
|
export declare const BREAK_ALLOWED = "\u00F7";
|
|
export declare type BREAK_OPPORTUNITIES = typeof BREAK_NOT_ALLOWED | typeof BREAK_ALLOWED;
|
|
export declare const codePointToClass: (codePoint: number) => number;
|
|
export declare const graphemeBreakAtIndex: (codePoints: number[], index: number) => BREAK_OPPORTUNITIES;
|
|
export declare const GraphemeBreaker: (str: string) => {
|
|
next: () => {
|
|
done: boolean;
|
|
value: null;
|
|
} | {
|
|
value: string;
|
|
done: boolean;
|
|
};
|
|
};
|
|
export declare const splitGraphemes: (str: string) => string[];
|