constructor(
* The tokens in binary format. Each token occupies two array indices. For token i:
* - at offset 2*i => startIndex
* - at offset 2*i + 1 => metadata
*
*/
public readonly tokens: Uint32Array,
public readonly fontInfo: IFontToken[],
public readonly endState: IState,
) {
}
}