| 78 | | string |
| 79 | |
| 80 | export interface I18nOptions { |
| 81 | /** Alternatives to Monday, Tuesday..*/ |
| 82 | days?: { |
| 83 | short: string[] |
| 84 | long: string[] |
| 85 | } |
| 86 | /** Alternatives to Jan, Feb..*/ |
| 87 | months?: { |
| 88 | short: string[] |
| 89 | long: string[] |
| 90 | } |
| 91 | /** Alternatives to am, pm*/ |
| 92 | ampm?: { |
| 93 | am: string |
| 94 | pm: string |
| 95 | } |
| 96 | /** Default dayname formatting */ |
| 97 | useTitleCase?: boolean |
| 98 | } |
nothing calls this directly
no outgoing calls
no test coverage detected