Files
kotlin-fork/libraries/stdlib/api/js-v1/org.w3c.performance.kt
T
Anton Bannykh cbabb4f76a JS stdlib api test: various changes
- Setting -Doverwrite.output=true updates gold data
- Big packages don't get split into chunks
- Unique lines in the API are marked with /*∆*/ and diff test is removed
- Annotations on separate lines and other dump format tweaks
- Test data moved to libraries/stdlib/api/
- Minor visibility fix to Enum members
2020-06-15 11:49:15 +03:00

77 lines
2.9 KiB
Kotlin

/*∆*/ public external interface GlobalPerformance {
/*∆*/ public abstract val performance: org.w3c.performance.Performance { get; }
/*∆*/ }
/*∆*/
/*∆*/ public abstract external class Performance : org.w3c.dom.events.EventTarget {
/*∆*/ public constructor Performance()
/*∆*/
/*∆*/ public open val navigation: org.w3c.performance.PerformanceNavigation { get; }
/*∆*/
/*∆*/ public open val timing: org.w3c.performance.PerformanceTiming { get; }
/*∆*/
/*∆*/ public final fun now(): kotlin.Double
/*∆*/ }
/*∆*/
/*∆*/ public abstract external class PerformanceNavigation {
/*∆*/ public constructor PerformanceNavigation()
/*∆*/
/*∆*/ public open val redirectCount: kotlin.Short { get; }
/*∆*/
/*∆*/ public open val type: kotlin.Short { get; }
/*∆*/
/*∆*/ public companion object of PerformanceNavigation {
/*∆*/ public final val TYPE_BACK_FORWARD: kotlin.Short { get; }
/*∆*/
/*∆*/ public final val TYPE_NAVIGATE: kotlin.Short { get; }
/*∆*/
/*∆*/ public final val TYPE_RELOAD: kotlin.Short { get; }
/*∆*/
/*∆*/ public final val TYPE_RESERVED: kotlin.Short { get; }
/*∆*/ }
/*∆*/ }
/*∆*/
/*∆*/ public abstract external class PerformanceTiming {
/*∆*/ public constructor PerformanceTiming()
/*∆*/
/*∆*/ public open val connectEnd: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val connectStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val domComplete: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val domContentLoadedEventEnd: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val domContentLoadedEventStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val domInteractive: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val domLoading: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val domainLookupEnd: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val domainLookupStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val fetchStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val loadEventEnd: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val loadEventStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val navigationStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val redirectEnd: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val redirectStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val requestStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val responseEnd: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val responseStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val secureConnectionStart: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val unloadEventEnd: kotlin.Number { get; }
/*∆*/
/*∆*/ public open val unloadEventStart: kotlin.Number { get; }
/*∆*/ }