export declare type ID32Value = Int32Array; export declare class ID32 { readonly id: ID32Value; /** * Sets an index in an id * @param easyId - id to set * @param index - index to set in the id */ setIndex(index: number): void; /** * Unsets an index in an id * @param index - index to unset in the id */ unsetIndex(index: number): void; /** * checks if idB contains the same bits as this id * @param id - id to compare */ matchIndex(id: ID32): boolean; /** * checks if any bits in idB match this id * @param id - id to compare */ matchAnyIndex(id: ID32): boolean; } //# sourceMappingURL=ID32.d.ts.map