Update all Uint8Array/Buffer to use ArrayBuffer

Co-authored-by: Jordan Rose <jrose@signal.org>
This commit is contained in:
Jamie
2026-03-16 18:55:17 -07:00
committed by GitHub
parent 863219012f
commit 8bfbd12323
110 changed files with 838 additions and 762 deletions

View File

@@ -22,7 +22,7 @@ import type GroupSendEndorsementsResponse from './GroupSendEndorsementsResponse.
* @see {@link GroupSendFullToken#verify}
*/
export default class GroupSendDerivedKeyPair extends ByteArray {
constructor(contents: Uint8Array) {
constructor(contents: Uint8Array<ArrayBuffer>) {
super(contents, Native.GroupSendDerivedKeyPair_CheckValidContents);
}