/* * Copyright 2026 Hypergiant Galactic Systems Inc. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { Format } from "../index.js"; import { Tokens } from "../lexer.js"; import { PipeResult } from "./index.js"; //#region src/coordinates/latlon/internal/pipes/fix-dividers.d.ts /** * For tokens lists without a divider, `fixDivider` attempts to determine the * __safe__ location to add a divider based on the existing formatting of the * coordinate: numbers, number positions, and number indicators. * * @param original - Array of coordinate tokens without a divider. * @param _format - Optional coordinate format (LATLON or LONLAT), currently unused. * @returns Pipe result with divider inserted, or error=true if no safe location found. * * @example * ```typescript * fixDivider(['45°', '30'', 'N', '122°', '15'', 'W']); * // Returns tokens with divider inserted between latitude and longitude * ``` * * @example * ```typescript * fixDivider(['45', '30', 'N']); * // Returns error=true (cannot safely determine divider position) * ``` * * @remarks * pure function */ declare function fixDivider(original: Tokens, _format?: Format): PipeResult; //#endregion export { fixDivider }; //# sourceMappingURL=fix-dividers.d.ts.map