@@ -68,7 +68,6 @@ external open class ValueRange : InteropInterface {
68
68
external open class TemporalAmount : InteropInterface {
69
69
open fun <T : Temporal > addTo (temporal : T ): T
70
70
open fun get (unit : TemporalUnit ): Int
71
- // open fun units(): JsArray<TemporalUnit>
72
71
open fun <T : Temporal > subtractFrom (temporal : T ): T
73
72
}
74
73
@@ -236,7 +235,6 @@ external open class Duration : TemporalAmount {
236
235
open fun toMinutes (): Int
237
236
open fun toNanos (): Double
238
237
override fun toString (): String
239
- // override fun units(): JsArray<TemporalUnit>
240
238
open fun withNanos (nanoOfSecond : Double ): Duration
241
239
open fun withSeconds (seconds : Int ): Duration
242
240
@@ -578,7 +576,6 @@ external open class Period : TemporalAmount {
578
576
open fun toJSON (): String
579
577
override fun toString (): String
580
578
open fun toTotalMonths (): Int
581
- // override fun units(): JsArray<TemporalUnit>
582
579
open fun withDays (days : Int ): Period
583
580
open fun withMonths (months : Int ): Period
584
581
open fun withYears (years : Int ): Period
@@ -996,7 +993,6 @@ external open class DayOfWeek : TemporalAccessor {
996
993
fun from (temporal : TemporalAccessor ): DayOfWeek
997
994
fun of (dayOfWeek : Int ): DayOfWeek
998
995
fun valueOf (name : String ): DayOfWeek
999
- // fun values(): JsArray<DayOfWeek>
1000
996
}
1001
997
}
1002
998
@@ -1036,7 +1032,6 @@ external open class Month : TemporalAccessor {
1036
1032
fun from (temporal : TemporalAccessor ): Month
1037
1033
fun of (month : Int ): Month
1038
1034
fun valueOf (name : String ): Month
1039
- // fun values(): JsArray<Month>
1040
1035
}
1041
1036
}
1042
1037
@@ -1165,7 +1160,6 @@ external open class ZoneOffsetTransition : InteropInterface {
1165
1160
open fun offsetBefore (): ZoneOffset
1166
1161
open fun toEpochSecond (): Double
1167
1162
override fun toString (): String
1168
- // open fun validOffsets(): JsArray<ZoneOffset>
1169
1163
1170
1164
companion object {
1171
1165
fun of (transition : LocalDateTime , offsetBefore : ZoneOffset , offsetAfter : ZoneOffset ): ZoneOffsetTransition
@@ -1190,9 +1184,6 @@ external open class ZoneRules : InteropInterface {
1190
1184
open fun standardOffset (instant : Instant ): ZoneOffset
1191
1185
override fun toString (): String
1192
1186
open fun transition (localDateTime : LocalDateTime ): ZoneOffsetTransition
1193
- // open fun transitionRules(): JsArray<ZoneOffsetTransitionRule>
1194
- // open fun transitions(): JsArray<ZoneOffsetTransition>
1195
- // open fun validOffsets(localDateTime: LocalDateTime): JsArray<ZoneOffset>
1196
1187
1197
1188
companion object {
1198
1189
fun of (offest : ZoneOffset ): ZoneRules
@@ -1202,7 +1193,6 @@ external open class ZoneRules : InteropInterface {
1202
1193
external open class ZoneRulesProvider : InteropInterface {
1203
1194
companion object {
1204
1195
fun getRules (zoneId : String ): ZoneRules
1205
- // fun getAvailableZoneIds(): JsArray<JsString>
1206
1196
}
1207
1197
}
1208
1198
0 commit comments