This commit is contained in:
2019-09-17 13:20:42 -04:00
parent d211d1dc34
commit bef10ce4c9
8352 changed files with 568242 additions and 51 deletions
@@ -0,0 +1,43 @@
export declare enum DayOfWeek {
/**
* Indicates Sunday.
*/
Sunday = 0,
/**
* Indicates Monday.
*/
Monday = 1,
/**
* Indicates Tuesday.
*/
Tuesday = 2,
/**
* Indicates Wednesday.
*/
Wednesday = 3,
/**
* Indicates Thursday.
*/
Thursday = 4,
/**
* Indicates Friday.
*/
Friday = 5,
/**
* Indicates Saturday.
*/
Saturday = 6,
}
export declare var TypeInfo: {
DayOfWeek: {
enumValues: {
"sunday": number;
"monday": number;
"tuesday": number;
"wednesday": number;
"thursday": number;
"friday": number;
"saturday": number;
};
};
};