mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
// @target: esnext
|
|
// @useDefineForClassFields: true
|
|
declare class Animal {
|
|
sound: string;
|
|
}
|
|
class Lion extends Animal {
|
|
_sound = 'roar'
|
|
get sound(): string { return this._sound }
|
|
set sound(val: string) { this._sound = val }
|
|
}
|