prettier/tests/flow/annot/any/A.js

10 lines
87 B
JavaScript

type T = any;
export default class {
p: T;
constructor() {
this.p = 0;
}
}