UNPKG

iran-license-plate

Version:
10 lines (8 loc) 351 B
interface PlaqueInfo { type: "governmental" | "personal" | "handicapped" | "taxi" | "police" | "sepah" | "military" | "ministry" | "headquarter" | "agriculture" | "temporary" | "diplomatic" | "service"; letter: string; bg: string; text: string; } declare function getPlaqueInfo(letter?: string): PlaqueInfo; export { getPlaqueInfo };