Project

General

Profile

1
export interface IMyDate {
2
    year: number;
3
    month: number;
4
    day: number;
5
}
(6-6/16)