mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 15:12:12 +00:00
17 lines
176 B
TypeScript
17 lines
176 B
TypeScript
import {
|
|
A
|
|
} from "./other";
|
|
import {
|
|
A,
|
|
B,
|
|
C
|
|
} from "./other";
|
|
import {
|
|
A as B,
|
|
C,
|
|
D as E,
|
|
F
|
|
} from "./other";
|
|
import * as A from "./other";
|
|
import "./other";
|