@@ -32,11 +32,11 @@ external fun createPipable(): Pipable
32
32
external fun createYetAnotherPipable (): Pipable
33
33
34
34
// ------------------------------------------------------------------------------------------
35
- // [test] index._computable.module__computable .kt
36
- @file:JsModule(" _computable " )
35
+ // [test] index._transformable.internalApi.module__transformable .kt
36
+ @file:JsModule(" _transformable " )
37
37
@file:JsNonModule
38
38
@file:Suppress(" INTERFACE_WITH_SUPERCLASS" , " OVERRIDING_FINAL_MEMBER" , " RETURN_TYPE_MISMATCH_ON_OVERRIDE" , " CONFLICTING_OVERLOADS" )
39
- package _computable
39
+ package _transformable.internalApi
40
40
41
41
import kotlin.js.*
42
42
import kotlin.js.Json
@@ -53,18 +53,14 @@ import org.w3c.performance.*
53
53
import org.w3c.workers.*
54
54
import org.w3c.xhr.*
55
55
56
- external open class Computable {
57
- open fun compute ()
58
- }
59
-
60
- external interface Pipable
56
+ external interface TransformOptions
61
57
62
58
// ------------------------------------------------------------------------------------------
63
- // [test] index._transformable.internalApi.module__transformable .kt
64
- @file:JsModule(" _transformable " )
59
+ // [test] index._computable.module__computable .kt
60
+ @file:JsModule(" _computable " )
65
61
@file:JsNonModule
66
62
@file:Suppress(" INTERFACE_WITH_SUPERCLASS" , " OVERRIDING_FINAL_MEMBER" , " RETURN_TYPE_MISMATCH_ON_OVERRIDE" , " CONFLICTING_OVERLOADS" )
67
- package _transformable.internalApi
63
+ package _computable
68
64
69
65
import kotlin.js.*
70
66
import kotlin.js.Json
@@ -81,4 +77,8 @@ import org.w3c.performance.*
81
77
import org.w3c.workers.*
82
78
import org.w3c.xhr.*
83
79
84
- external interface TransformOptions
80
+ external open class Computable {
81
+ open fun compute ()
82
+ }
83
+
84
+ external interface Pipable
0 commit comments