//#region src/is-latitude/index.d.ts /** * Determines if given value is a valid latitude range. * Assumes degrees as the unit of measure. * * @param val - The value to check whether or not it is a latitude. * @returns True if the value is a finite number between -90 and 90 (inclusive), false otherwise. * * @example * ```typescript * import { isLatitude } from '@accelint/predicates/is-latitude'; * * isLatitude(-90); // true * isLatitude(0); // true * isLatitude(90); // true * isLatitude(-100); // false * isLatitude(NaN); // false * ``` */ declare function isLatitude(val: unknown): boolean; //#endregion export { isLatitude }; //# sourceMappingURL=index.d.ts.map