index.d.ts 371 B

1234567
  1. export interface UnicodeScalarValue {
  2. codePoint: number;
  3. string: string;
  4. }
  5. export declare function codePoint(typeface: string, codePoint: number): UnicodeScalarValue | undefined;
  6. export declare function dec(typeface: string, dec: string): UnicodeScalarValue | undefined;
  7. export declare function hex(typeface: string, hex: string): UnicodeScalarValue | undefined;