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

Properties

Properties

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

Type declaration

  • reject: Function
  • resolve: Function

Generated using TypeDoc