flow2schema/tests/samples/skipStatics/source.js

9 lines
90 B
JavaScript

class X {
static x: number = 20;
static xx = 20;
xxx: string;
}
export {X};