UNPKG

xud

Version:
15 lines (14 loc) 616 B
import Packet, { PacketDirection, ResponseType } from '../Packet'; import PacketType from '../PacketType'; import * as pb from '../../../proto/xudp2p_pb'; export declare type SanitySwapAckPacketBody = {}; declare class SanitySwapAckPacket extends Packet<SanitySwapAckPacketBody> { get type(): PacketType; get direction(): PacketDirection; get responseType(): ResponseType; static deserialize: (binary: Uint8Array) => SanitySwapAckPacket | pb.SanitySwapAckPacket.AsObject; private static validate; private static convert; serialize: () => Uint8Array; } export default SanitySwapAckPacket;