UNPKG

@eccenca/gui-elements

Version:

GUI elements based on other libraries, usable in React application, written in Typescript.

26 lines (25 loc) 813 B
type InvisibleCharacter = { /** Code point. */ codePoint: number; /** Human readable label for code point. */ label: string; /** The hex representation of the code point, e.g. "200B" */ hexString: string; /** The label plus the hex value. */ fullLabel: string; }; export declare const invisibleZeroWidthCharacters: { codePoints: InvisibleCharacter[]; codePointMap: Map<number, InvisibleCharacter>; createRegex: () => RegExp; clearString: (inputString: string) => string; }; declare const moduleObject: { invisibleZeroWidthCharacters: { codePoints: InvisibleCharacter[]; codePointMap: Map<number, InvisibleCharacter>; createRegex: () => RegExp; clearString: (inputString: string) => string; }; }; export default moduleObject;