@sisyphus.js/google
Version:
Precompiled google common protos by sisyphus protobuf compiler
46 lines (32 loc) • 817 B
text/typescript
/** Represents a month in the Gregorian calendar. */
export enum Month {
/** The unspecified month. */
MONTH_UNSPECIFIED = 0,
/** The month of January. */
JANUARY = 1,
/** The month of February. */
FEBRUARY = 2,
/** The month of March. */
MARCH = 3,
/** The month of April. */
APRIL = 4,
/** The month of May. */
MAY = 5,
/** The month of June. */
JUNE = 6,
/** The month of July. */
JULY = 7,
/** The month of August. */
AUGUST = 8,
/** The month of September. */
SEPTEMBER = 9,
/** The month of October. */
OCTOBER = 10,
/** The month of November. */
NOVEMBER = 11,
/** The month of December. */
DECEMBER = 12,
}
export namespace Month {
export const name = 'google.type.Month'
}