Support for `export type *`

TL;DR

export type * が使えるようになった。

// OK
export type * from "a";

// OK
export type * as A from "a";

Last updated