tsbase
    Preparing search index...

    Interface IAsyncCommand

    Wraps an async void function returning a Result

    interface IAsyncCommand {
        AsyncCommand: () => Promise<void>;
        Execute(): Promise<Result<null>>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    AsyncCommand: () => Promise<void>

    Methods