UNPKG

@teknyo/sl_nic_validator

Version:

Validate Sri Lankan NIC numbers for old and new formats (JavaScript & TypeScript).

16 lines (15 loc) 402 B
export interface NICBasicDetails { nic: string; isValid: boolean; type: NICType | null; error?: string; } export interface NICFullDetails extends NICBasicDetails { gender: NICGender | null; birthYear: number | null; birthMonth: number | null; birthDay: number | null; error?: string; } export type NICType = 'old' | 'new'; export type NICGender = 'male' | 'female';