Files
babel/packages/babel-parser/test/fixtures/flow/this-annotation/declare-function/input.js
2021-02-21 17:44:27 +01:00

8 lines
211 B
JavaScript

declare function foo (this : number, a : string, b : number) : void
declare function bar (this : number): void
declare function baz (this : number, ...a : any): void
declare function qux<T> (this : T) : void