UNPKG

@ivandt/json-rules

Version:

Rule parsing engine for JSON rules

10 lines (9 loc) 320 B
import { CountryValidationConfig } from "../../types/rule"; /** * Validates country identifiers in various formats */ export declare function validateCountry(value: any, config: CountryValidationConfig): boolean; /** * Get all supported country names */ export declare function getSupportedCountryNames(): string[];