Type Alias AsyncOp

AsyncOp: {
    error: any;
    isComplete: boolean;
    isFailure: boolean;
    isInProgress: boolean;
    isStarted: boolean;
    isSuccess: boolean;
    lastUpdated: number;
}