mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
b887b30092
**Description:** This is required for https://github.com/swc-project/swc/pull/6981 and https://github.com/swc-project/swc/pull/6950
12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
|
|
class A<T1, T2> {
|
|
constructor(private map: (value: T1) => T2) {
|
|
|
|
}
|
|
}
|
|
|
|
class B extends A<number, string> {
|
|
// Ensure 'value' is of type 'number (and not '{}') by using its 'toExponential()' method.
|
|
constructor() { super(value => String(value.toExponential())); }
|
|
}
|