You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
512 B
11 lines
512 B
3 months ago
|
/// <reference types="node" />
|
||
|
import bitfield from 'sparse-bitfield';
|
||
|
export declare function createMemoryCodePoints(data: Buffer): {
|
||
|
unassigned_code_points: bitfield.BitFieldInstance;
|
||
|
commonly_mapped_to_nothing: bitfield.BitFieldInstance;
|
||
|
non_ASCII_space_characters: bitfield.BitFieldInstance;
|
||
|
prohibited_characters: bitfield.BitFieldInstance;
|
||
|
bidirectional_r_al: bitfield.BitFieldInstance;
|
||
|
bidirectional_l: bitfield.BitFieldInstance;
|
||
|
};
|
||
|
//# sourceMappingURL=memory-code-points.d.ts.map
|