14 lines
146 B
Plaintext
14 lines
146 B
Plaintext
interface imports {
|
|
thunk: func()
|
|
}
|
|
|
|
interface exports {
|
|
thunk: func()
|
|
}
|
|
|
|
world smoke {
|
|
import imports: imports
|
|
default export exports
|
|
}
|
|
|