import { Result } from "ts-results-es"; export interface IExecutable { execute(...args: any[]): Promise>; executeSync(...args: any[]): Result; };