blob: 638b228d06315ba8f32cd1e5a624e6be8af7c79a [file]
export default interface IExecutable<T> {
execute(...args: any[]): Promise<T>;
}