2014-11-04 08:05:09 +11:00

10 lines
213 B
JavaScript

export * from "OK";
export { name } from "OK";
export { a as b, c as d } from "hello";
export { a as b, c as d };
export {};
export default i = 20;
export function test() {};
export var i = 20;
export let i = 42;