import { Entry } from "./model"; import JabEntry from "./JabEntry"; export declare class JabResult { private _entries; constructor(entries: Promise); /** * Get the first value of result * * @returns {Promise} * @memberof JabResult */ value(): Promise; /** * Get all values of a result as an array * * @returns {Promise} * @memberof JabResult */ values(): Promise; /** * Get the first id of a result */ id(): Promise; /** * Get all ids of a result as an array * * @returns {Promise} * @memberof JabResult */ ids(): Promise; /** * Get the entry of a result. * An entry contains both the value and the id * * @returns {Promise} * @memberof JabResult */ entry(): Promise; /** * Get all entries of a result as an array. * An entry contains both the value and the id * * @returns {Promise} * @memberof JabResult */ entries(): Promise; }