UNPKG

@noodle-group/noodl

Version:

nooDL is a package for efficient validation of US driver license numbers across all 50 states and the District of Columbia.

4 lines (3 loc) 207 B
import { MatchedStates, State } from "./types"; export declare const validateLicense: (state: State, license: string) => string | null; export declare const matchLicense: (license: string) => MatchedStates;