import { LedgerOffset } from "./LedgerOffset";
/**
 * Example:
 *
 * ```
 * {
 *     offset: {
 *         offsetType: 'absolute',
 *         absolute: '42'
 *     }
 * }
 * ```
 *
 * To express values in a more concise way, you can have a look at the {@link ValueHelpers}.
 *
 * @see LedgerOffset
 */
export interface GetLedgerEndResponse {
    /**
     * The absolute offset of the current ledger end.
     */
    offset: LedgerOffset;
}
