mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
21 lines
211 B
TypeScript
21 lines
211 B
TypeScript
// @target: es5
|
|
// @module: es2015
|
|
|
|
import d from "mod";
|
|
|
|
import {a} from "mod";
|
|
|
|
import * as M from "mod";
|
|
|
|
export {a};
|
|
|
|
export {M};
|
|
|
|
export {d};
|
|
|
|
export * from "mod";
|
|
|
|
export {b} from "mod"
|
|
|
|
export default d;
|