prettier/tests/union/fields.js

7 lines
84 B
JavaScript

class C {
x: ?number|string;
constructor() {
this.x = null;
}
}