8 lines
371 B
TypeScript
8 lines
371 B
TypeScript
|
|
export interface UnicodeScalarValue {
|
||
|
|
codePoint: number;
|
||
|
|
string: string;
|
||
|
|
}
|
||
|
|
export declare function codePoint(typeface: string, codePoint: number): UnicodeScalarValue | undefined;
|
||
|
|
export declare function dec(typeface: string, dec: string): UnicodeScalarValue | undefined;
|
||
|
|
export declare function hex(typeface: string, hex: string): UnicodeScalarValue | undefined;
|