{
  "version": 3,
  "sources": ["../src/types.ts"],
  "sourcesContent": ["/**\n * External dependencies\n */\nimport type { LocaleSpecification as MomentLocaleSpecification } from 'moment';\n\nexport type MeridiemConfig = {\n\t/**\n\t * Lowercase AM.\n\t */\n\tam: string;\n\n\t/**\n\t * Uppercase AM.\n\t */\n\tAM: string;\n\n\t/**\n\t * Lowercase PM.\n\t */\n\tpm: string;\n\n\t/**\n\t * Uppercase PM.\n\t */\n\tPM: string;\n};\n\nexport type FormatsConfig = {\n\t/**\n\t * Time format.\n\t */\n\ttime: string;\n\n\t/**\n\t * Date format.\n\t */\n\tdate: string;\n\n\t/**\n\t * Datetime format.\n\t */\n\tdatetime: string;\n\n\t/**\n\t * Abbreviated datetime format.\n\t */\n\tdatetimeAbbreviated: string;\n};\n\nexport type TimezoneConfig = {\n\t/**\n\t * Offset setting.\n\t */\n\toffset: number;\n\n\t/**\n\t * Offset setting with decimals formatted to minutes.\n\t */\n\toffsetFormatted: string;\n\n\t/**\n\t * The timezone as a string (e.g., `'America/Los_Angeles'`).\n\t */\n\tstring: string;\n\n\t/**\n\t * Abbreviation for the timezone.\n\t */\n\tabbr: string;\n};\n\nexport type L10nSettings = {\n\t/**\n\t * Moment locale.\n\t */\n\tlocale: string;\n\n\t/**\n\t * Locale months.\n\t *\n\t * @example\n\t * ['January', 'February', ... ]\n\t */\n\tmonths: MomentLocaleSpecification[ 'months' ];\n\n\t/**\n\t * Locale months short.\n\t *\n\t * @example\n\t * ['Jan', 'Feb', ... ]\n\t */\n\tmonthsShort: MomentLocaleSpecification[ 'monthsShort' ];\n\n\t/**\n\t * Locale weekdays.\n\t *\n\t * @example\n\t * ['Sunday', 'Monday', ... ]\n\t */\n\tweekdays: MomentLocaleSpecification[ 'weekdays' ];\n\n\t/**\n\t * Locale weekdays short.\n\t */\n\tweekdaysShort: MomentLocaleSpecification[ 'weekdaysShort' ];\n\n\t/**\n\t * Meridiem config.\n\t */\n\tmeridiem: MeridiemConfig;\n\n\t/**\n\t * Relative time config.\n\t */\n\trelative: MomentLocaleSpecification[ 'relativeTime' ];\n\n\t/**\n\t * Day that the week starts on.\n\t */\n\tstartOfWeek: 0 | 1 | 2 | 3 | 4 | 5 | 6;\n};\n\nexport type DateSettings = {\n\t/**\n\t * Localization settings.\n\t */\n\tl10n: L10nSettings;\n\n\t/**\n\t * Date/time formats config.\n\t */\n\tformats: FormatsConfig;\n\n\t/**\n\t * Timezone settings.\n\t */\n\ttimezone: TimezoneConfig;\n};\n"],
  "mappings": ";;;;;;;;;;;;;;;;AAAA;AAAA;",
  "names": []
}
