@statechannels/server-wallet > UpdateChannelError
UpdateChannelError type
This is returned when an unhandled error occurs when trying to update a channel
Signature:
export declare type UpdateChannelError = {
type: 'InternalError';
channelId: string;
error: Error;
};