/** * Module errors. * * @module */ /** The denominator provided was zero */ export declare const EDENOMINATOR: { readonly code: 65537; readonly name: "EDENOMINATOR"; readonly doc: "The denominator provided was zero"; }; /** A division by zero was encountered */ export declare const EDIVISION_BY_ZERO: { readonly code: 65540; readonly name: "EDIVISION_BY_ZERO"; readonly doc: "A division by zero was encountered"; }; /** The quotient value would be too large to be held in a `u64` */ export declare const EDIVISION: { readonly code: 131074; readonly name: "EDIVISION"; readonly doc: "The quotient value would be too large to be held in a `u64`"; }; /** The multiplied value would be too large to be held in a `u64` */ export declare const EMULTIPLICATION: { readonly code: 131075; readonly name: "EMULTIPLICATION"; readonly doc: "The multiplied value would be too large to be held in a `u64`"; }; /** The computed ratio when converting to a `FixedPoint32` would be unrepresentable */ export declare const ERATIO_OUT_OF_RANGE: { readonly code: 131077; readonly name: "ERATIO_OUT_OF_RANGE"; readonly doc: "The computed ratio when converting to a `FixedPoint32` would be unrepresentable"; }; //# sourceMappingURL=errors.d.ts.map