chore: remove Buffer from PublicKeyInitData (#27888)

This commit is contained in:
Ian Macalinao 2022-09-17 19:16:45 -05:00 committed by GitHub
parent 5664c12248
commit 98dfc2b7d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -23,7 +23,6 @@ export const PUBLIC_KEY_LENGTH = 32;
export type PublicKeyInitData =
| number
| string
| Buffer
| Uint8Array
| Array<number>
| PublicKeyData;