Files
tsclass/ts/date.ts

6 lines
72 B
TypeScript
Raw Normal View History

2016-11-16 22:50:36 +01:00
export interface IDate {
2017-03-16 19:34:27 +01:00
day: number
month: number
year: number
2016-11-16 22:50:36 +01:00
}