Interface Birthdate

Describes the birthdate of a user.

interface Birthdate {
    day: number;
    month: number;
    year?: number;
}

Properties

Properties

day: number

Day of the user's birth; 1-31

month: number

Month of the user's birth; 1-12

year?: number

Year of the user's birth