UNPKG

tsbase

Version:

Base class libraries for TypeScript

8 lines (7 loc) 284 B
import { Result } from '../Result/Result'; import { IAsyncCommand } from './IAsyncCommand'; export declare class AsyncCommand implements IAsyncCommand { AsyncCommand: () => Promise<void>; constructor(AsyncCommand: () => Promise<void>); Execute(): Promise<Result<null>>; }