genes
genes copied to clipboard
Incorrect dts for parametrized static var in abstract
abstract Foo<T>(Int) {
public static final INST: Foo<String> = null;
}
generated:
export declare class Foo_Impl_ {
static INST: <T>number
}
Note the extraneous <T>
before number
is invalid syntax