Interface IResult

interface IResult {
    toArray(): any[];
    toObject(): Record<string, any>;
}

Methods

  • Returns the Result as an Object with each name-value pair.

    Returns Record<string, any>