@@ -43,12 +43,6 @@ public inline operator fun kotlin.js.RegExpMatch.get(index: kotlin.Int): kotlin.
4343@kotlin.internal.DynamicExtension
4444public operator fun dynamic.iterator (): kotlin.collections.Iterator <dynamic >
4545
46- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use maxOf or kotlin.math.max instead" , replaceWith = kotlin.ReplaceWith (expression = " maxOf(a, b)" , imports = {}))
47- public fun kotlin.js.Math.max (a : kotlin.Long , b : kotlin.Long ): kotlin.Long
48-
49- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use minOf or kotlin.math.min instead" , replaceWith = kotlin.ReplaceWith (expression = " minOf(a, b)" , imports = {}))
50- public fun kotlin.js.Math.min (a : kotlin.Long , b : kotlin.Long ): kotlin.Long
51-
5246public fun kotlin.js.RegExp.reset (): kotlin.Unit
5347
5448public inline fun <T , S > kotlin.js.Promise<kotlin.js.Promise<T>>.then (noinline onFulfilled : ((T ) -> S )? ): kotlin.js.Promise <S >
@@ -276,78 +270,6 @@ public external interface Json {
276270 public abstract operator fun set (propertyName : kotlin.String , value : kotlin.Any? ): kotlin.Unit
277271}
278272
279- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use top-level functions from kotlin.math package instead." )
280- public external object Math {
281- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.PI instead." , replaceWith = kotlin.ReplaceWith (expression = " PI" , imports = {" kotlin.math.PI" }))
282- public final val PI : kotlin.Double { get; }
283-
284- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.abs instead." , replaceWith = kotlin.ReplaceWith (expression = " abs(value)" , imports = {" kotlin.math.abs" }))
285- public final fun abs (value : kotlin.Double ): kotlin.Double
286-
287- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.acos instead." , replaceWith = kotlin.ReplaceWith (expression = " acos(value)" , imports = {" kotlin.math.acos" }))
288- public final fun acos (value : kotlin.Double ): kotlin.Double
289-
290- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.asin instead." , replaceWith = kotlin.ReplaceWith (expression = " asin(value)" , imports = {" kotlin.math.asin" }))
291- public final fun asin (value : kotlin.Double ): kotlin.Double
292-
293- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.atan instead." , replaceWith = kotlin.ReplaceWith (expression = " atan(value)" , imports = {" kotlin.math.atan" }))
294- public final fun atan (value : kotlin.Double ): kotlin.Double
295-
296- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.atan2 instead." , replaceWith = kotlin.ReplaceWith (expression = " atan2(y, x)" , imports = {" kotlin.math.atan2" }))
297- public final fun atan2 (y : kotlin.Double , x : kotlin.Double ): kotlin.Double
298-
299- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.ceil instead." , replaceWith = kotlin.ReplaceWith (expression = " ceil(value)" , imports = {" kotlin.math.ceil" }))
300- public final fun ceil (value : kotlin.Number ): kotlin.Int
301-
302- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.cos instead." , replaceWith = kotlin.ReplaceWith (expression = " cos(value)" , imports = {" kotlin.math.cos" }))
303- public final fun cos (value : kotlin.Double ): kotlin.Double
304-
305- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.exp instead." , replaceWith = kotlin.ReplaceWith (expression = " exp(value)" , imports = {" kotlin.math.exp" }))
306- public final fun exp (value : kotlin.Double ): kotlin.Double
307-
308- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.floor instead." , replaceWith = kotlin.ReplaceWith (expression = " floor(value)" , imports = {" kotlin.math.floor" }))
309- public final fun floor (value : kotlin.Number ): kotlin.Int
310-
311- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.ln instead." , replaceWith = kotlin.ReplaceWith (expression = " ln(value)" , imports = {" kotlin.math.ln" }))
312- public final fun log (value : kotlin.Double ): kotlin.Double
313-
314- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use maxOf or kotlin.math.max instead" )
315- public final fun max (vararg values : kotlin.Double ): kotlin.Double
316-
317- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use maxOf or kotlin.math.max instead" )
318- public final fun max (vararg values : kotlin.Float ): kotlin.Float
319-
320- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use maxOf or kotlin.math.max instead" )
321- public final fun max (vararg values : kotlin.Int ): kotlin.Int
322-
323- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use minOf or kotlin.math.min instead" )
324- public final fun min (vararg values : kotlin.Double ): kotlin.Double
325-
326- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use minOf or kotlin.math.min instead" )
327- public final fun min (vararg values : kotlin.Float ): kotlin.Float
328-
329- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use minOf or kotlin.math.min instead" )
330- public final fun min (vararg values : kotlin.Int ): kotlin.Int
331-
332- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.pow instead." , replaceWith = kotlin.ReplaceWith (expression = " base.pow(exp)" , imports = {" kotlin.math.pow" }))
333- public final fun pow (base : kotlin.Double , exp : kotlin.Double ): kotlin.Double
334-
335- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use Random.nextDouble instead" , replaceWith = kotlin.ReplaceWith (expression = " kotlin.random.Random.nextDouble()" , imports = {" kotlin.random.Random" }))
336- public final fun random (): kotlin.Double
337-
338- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.round instead." , replaceWith = kotlin.ReplaceWith (expression = " round(value)" , imports = {" kotlin.math.round" }))
339- public final fun round (value : kotlin.Number ): kotlin.Int
340-
341- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.sin instead." , replaceWith = kotlin.ReplaceWith (expression = " sin(value)" , imports = {" kotlin.math.sin" }))
342- public final fun sin (value : kotlin.Double ): kotlin.Double
343-
344- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.sqrt instead." , replaceWith = kotlin.ReplaceWith (expression = " sqrt(value)" , imports = {" kotlin.math.sqrt" }))
345- public final fun sqrt (value : kotlin.Double ): kotlin.Double
346-
347- @kotlin.Deprecated (level = DeprecationLevel .ERROR , message = " Use kotlin.math.tan instead." , replaceWith = kotlin.ReplaceWith (expression = " tan(value)" , imports = {" kotlin.math.tan" }))
348- public final fun tan (value : kotlin.Double ): kotlin.Double
349- }
350-
351273public open external class Promise <out T > {
352274 public constructor Promise <out T >(executor: (resolve: (T ) -> kotlin.Unit , reject: (kotlin.Throwable ) -> kotlin.Unit ) -> kotlin.Unit )
353275
0 commit comments