Open anilanar opened 7 years ago
type Foo = Generator<any, any, any>
is converted to
const Foo = Generator so the following error is thrown:
const Foo = Generator
ReferenceError: Generator is not defined.
ReferenceError: Generator is not defined
type Foo = Generator<any, any, any>
is converted to
const Foo = Generator
so the following error is thrown:ReferenceError: Generator is not defined
.