/** * Module errors. * * @module */ /** * When the value of aggregator (actual or accumulated) overflows (raised * by native code). */ export declare const EAGGREGATOR_OVERFLOW: { readonly code: 1; readonly name: "EAGGREGATOR_OVERFLOW"; readonly doc: "When the value of aggregator (actual or accumulated) overflows (raised\nby native code)."; }; /** * When the value of aggregator (actual or accumulated) underflows, i.e goes * below zero (raised by native code). */ export declare const EAGGREGATOR_UNDERFLOW: { readonly code: 2; readonly name: "EAGGREGATOR_UNDERFLOW"; readonly doc: "When the value of aggregator (actual or accumulated) underflows, i.e goes\nbelow zero (raised by native code)."; }; /** When aggregator feature is not supported (raised by native code). */ export declare const ENOT_SUPPORTED: { readonly code: 3; readonly name: "ENOT_SUPPORTED"; readonly doc: "When aggregator feature is not supported (raised by native code)."; }; //# sourceMappingURL=errors.d.ts.map