//#region src/coordinates/latlon/internal/exhaustive-errors.d.ts /** * A collection of input strings each with exactly one error in a unique * position for each format (LATLON and LONLAT) in each system (DD, DDM, DMS). * * Used for comprehensive error validation testing. Each entry contains coordinate * strings with systematic errors across different notation systems. * * @example * ```typescript * EXHAUSTIVE_ERRORS.DD.LATLON; * // Array of decimal degrees strings with errors like '91 N / 179 E' * ``` * * @example * ```typescript * EXHAUSTIVE_ERRORS.DMS.LONLAT; * // Array of degrees-minutes-seconds strings with errors * ``` */ declare const EXHAUSTIVE_ERRORS: { [k: string]: any; }; //#endregion export { EXHAUSTIVE_ERRORS }; //# sourceMappingURL=exhaustive-errors.d.ts.map