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.
14 lines
444 B
14 lines
444 B
|
2 years ago
|
import { CodePointReader } from './interfaces/code-point-reader';
|
||
|
|
export declare class Reader implements CodePointReader {
|
||
|
|
cursor: number;
|
||
|
|
source: string;
|
||
|
|
codePointSource: Array<number>;
|
||
|
|
length: number;
|
||
|
|
representationStart: number;
|
||
|
|
representationEnd: number;
|
||
|
|
constructor(source: string);
|
||
|
|
advanceCodePoint(n?: number): void;
|
||
|
|
readCodePoint(n?: number): number | false;
|
||
|
|
unreadCodePoint(n?: number): void;
|
||
|
|
}
|