hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface IAsyncEvent<T>

    Represents an event related to an async command.

    interface IAsyncEvent<T> {
        data?: T;
        id: string;
        progress?: number;
        state: AsyncCommandState;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    data?: T

    Optional event data.

    id: string

    The unique ID of the command.

    progress?: number

    Optional progress value.

    The state of the command at the time of the event.