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