UNPKG
jscrs
Version:
latest (0.2.6)
0.2.6
0.2.5
0.2.4
comment-rate-statistics
github.com/phillyx/jscrs/
phillyx/jscrs
jscrs
/
src
/
interfaces
/
mode.type.ts
5 lines
(3 loc)
•
155 B
text/typescript
View Raw
1
2
3
4
5
import
{
IOptions
}
from
'./options.i'
;
import
{
IToken
}
from
'./token/token.i'
;
export
type
IMode
=
(
token
:
IToken
,
options
?:
IOptions
) =>
boolean
;