mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
cleanup
This commit is contained in:
Generated
Vendored
+43
@@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user