*SslData should just be Uint8Array's

This commit is contained in:
Derrick Hammer 2022-09-09 04:01:57 -04:00
parent bc6d683477
commit bc75b57397
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 2 deletions

View File

@ -108,6 +108,6 @@ export interface IndependentFileSmall {
}
export interface SslData {
cert?: IndependentFileSmall | Uint8Array;
key?: IndependentFileSmall | Uint8Array;
cert?: Uint8Array;
key?: Uint8Array;
}