export interface PublicHalfCryptoKeyPair { publicKey: CryptoKey; } export interface PrivateHalfCryptoKeyPair { privateKey: CryptoKey; } export type HalfCryptoKeyPair = | PublicHalfCryptoKeyPair | PrivateHalfCryptoKeyPair;