prettier/tests/flow/sealed/function.js

10 lines
188 B
JavaScript

/* @flow */
function Bar(x: number) {
this.x = x;
}
Bar.prototype.getX = function() { return this.x; }
Bar.prototype.getY = function(): string { return this.y; }
module.exports = Bar;