[gapi-people] Add definitions for Birthday object (#37318)

* Add definitions for Birthday object

* Add definitions for Birthday object
This commit is contained in:
Stéphane S 2019-08-05 22:19:01 +02:00 committed by Nathan Shively-Sanders
parent b436adee5c
commit 8e8902b6da

View File

@ -133,6 +133,15 @@ declare namespace gapi.client.people {
}
interface Birthday {
metadata: FieldMetadata;
date: Date;
text: string;
}
interface Date {
day: number;
month: number;
year: number;
}
interface Event {