(fc)
| 7050 | ).annotations({ identifier: "TimeZone" }) {} |
| 7051 | |
| 7052 | const timeZoneArbitrary: LazyArbitrary<dateTime.TimeZone> = (fc) => |
| 7053 | fc.oneof( |
| 7054 | timeZoneOffsetArbitrary()(fc), |
| 7055 | timeZoneNamedArbitrary()(fc) |
| 7056 | ) |
| 7057 | |
| 7058 | /** |
| 7059 | * Describes a schema that represents a `DateTime.Zoned` instance. |
no test coverage detected