flow2schema/tests/samples/skipStatics/source.js

9 lines
90 B
JavaScript
Raw Normal View History

2017-11-28 17:22:49 +03:00
class X {
static x: number = 20;
static xx = 20;
xxx: string;
}
export {X};