//#region src/coordinates/latlon/internal/violation.d.ts /** * Formats an error message with a standard [ERROR] prefix. * * @param s - The error message string to format. * @returns Formatted error string with [ERROR] prefix. * * @example * ```typescript * violation('Invalid coordinate value.'); * // '[ERROR] Invalid coordinate value.' * ``` * * @example * ```typescript * violation('Degrees value (91) exceeds max value (90).'); * // '[ERROR] Degrees value (91) exceeds max value (90).' * ``` */ declare const violation: (s: string) => string; //#endregion export { violation }; //# sourceMappingURL=violation.d.ts.map