UNPKG

date-picker-np

Version:
12 lines (11 loc) 334 B
export declare const convertADToBS: (englishDate: string) => string; export declare const convertBSToAD: (nepaliDate: string) => string; export declare const calculateAge: (dateOfBirth: string) => { years?: undefined; months?: undefined; days?: undefined; } | { years: number; months: number; days: number; };