@@ -114,9 +114,7 @@ export namespace Temporal {
114
114
offset ?: 'use' | 'prefer' | 'ignore' | 'reject' | undefined ;
115
115
} ;
116
116
117
- export type ZonedDateTimeAssignmentOptions = Partial <
118
- AssignmentOptions & ToInstantOptions & OffsetDisambiguationOptions
119
- > ;
117
+ export type ZonedDateTimeAssignmentOptions = AssignmentOptions & ToInstantOptions & OffsetDisambiguationOptions ;
120
118
121
119
/**
122
120
* Options for arithmetic operations like `add()` and `subtract()`
@@ -187,20 +185,16 @@ export namespace Temporal {
187
185
calendarName ?: 'auto' | 'always' | 'never' | 'critical' | undefined ;
188
186
} ;
189
187
190
- export type CalendarTypeToStringOptions = Partial < ToStringPrecisionOptions & ShowCalendarOption > ;
188
+ export type CalendarTypeToStringOptions = ToStringPrecisionOptions & ShowCalendarOption ;
191
189
192
- export type ZonedDateTimeToStringOptions = Partial <
193
- CalendarTypeToStringOptions & {
194
- timeZoneName ?: 'auto' | 'never' | 'critical' | undefined ;
195
- offset ?: 'auto' | 'never' | undefined ;
196
- }
197
- > ;
190
+ export type ZonedDateTimeToStringOptions = CalendarTypeToStringOptions & {
191
+ timeZoneName ?: 'auto' | 'never' | 'critical' | undefined ;
192
+ offset ?: 'auto' | 'never' | undefined ;
193
+ } ;
198
194
199
- export type InstantToStringOptions = Partial <
200
- ToStringPrecisionOptions & {
201
- timeZone : TimeZoneLike ;
202
- }
203
- > ;
195
+ export type InstantToStringOptions = ToStringPrecisionOptions & {
196
+ timeZone ?: TimeZoneLike | undefined ;
197
+ } ;
204
198
205
199
/**
206
200
* Options to control the result of `until()` and `since()` methods in
0 commit comments