UNPKG

403 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_LATLONG = "isLatLong";
3/**
4 * Checks if a value is string in format a "latitude,longitude".
5 */
6export declare function isLatLong(value: string): boolean;
7/**
8 * Checks if a value is string in format a "latitude,longitude".
9 */
10export declare function IsLatLong(validationOptions?: ValidationOptions): PropertyDecorator;