feat(protocol): exports for trezor push notification

This commit is contained in:
karliatto
2025-09-26 16:20:05 +02:00
parent e482358331
commit c2dca4f0bd

View File

@@ -28,3 +28,9 @@ export interface TransportProtocol {
decode: TransportProtocolDecode;
getHeaders: (data: Buffer) => [header: Buffer, chunkHeader: Buffer];
}
export {
TrezorPushNotificationType,
TrezorPushNotificationMode,
type DecodedTrezorPushNotification,
} from './protocol-tpn/index';