/** * Module errors. * * @module */ /** * The `Option` is in an invalid state for the operation attempted. * The `Option` is `Some` while it should be `None`. */ export declare const EOPTION_IS_SET: { readonly code: 262144; readonly name: "EOPTION_IS_SET"; readonly doc: "The `Option` is in an invalid state for the operation attempted.\nThe `Option` is `Some` while it should be `None`."; }; /** * The `Option` is in an invalid state for the operation attempted. * The `Option` is `None` while it should be `Some`. */ export declare const EOPTION_NOT_SET: { readonly code: 262145; readonly name: "EOPTION_NOT_SET"; readonly doc: "The `Option` is in an invalid state for the operation attempted.\nThe `Option` is `None` while it should be `Some`."; }; //# sourceMappingURL=errors.d.ts.map