lisk-framework
Version:
Lisk blockchain application platform
8 lines (7 loc) • 478 B
TypeScript
import { BaseInteroperabilityCCCommand } from '../base_interoperability_cc_commands';
import { CCCommandExecuteContext } from '../types';
import { BaseInteroperabilityInternalMethod } from '../base_interoperability_internal_methods';
export declare abstract class BaseCCChannelTerminatedCommand<T extends BaseInteroperabilityInternalMethod> extends BaseInteroperabilityCCCommand<T> {
get name(): string;
execute(context: CCCommandExecuteContext<void>): Promise<void>;
}