interface ChannelFsm {
    handler: ChannelHandler;
    state?: ChannelState | { reject: Function; resolve: Function };
}

Properties

Properties

state?: ChannelState | { reject: Function; resolve: Function }