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
301 B
11 lines
301 B
|
2 years ago
|
export type CodePointReader = {
|
||
|
|
representationStart: number;
|
||
|
|
representationEnd: number;
|
||
|
|
cursor: number;
|
||
|
|
codePointSource: Array<number>;
|
||
|
|
source: string;
|
||
|
|
advanceCodePoint(n?: number): void;
|
||
|
|
readCodePoint(n?: number): number | false;
|
||
|
|
unreadCodePoint(n?: number): void;
|
||
|
|
};
|