UNPKG
eslint-config-ct
Version:
latest (2.0.0)
2.0.0
1.1.1
1.1.0
1.0.0
ESLint config used in Charlie Tango
eslint-config-ct
/
__test__
/
flow-test.js
13 lines
(10 loc)
•
143 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// @flow
type
TestObj
= {
a
?:
number
,
b
:
string
,
a
:
number
}
function
add
(
x
:
TestObj
,
y
:
number
) {
return
x + y }
export
default
add