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
/
token
/
token.i.ts
14 lines
(12 loc)
•
249 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
ITokenLocation
}
from
'./token-location.i'
;
export
interface
IToken
{
type
:
string
;
value
:
string
;
length
:
number
;
format
:
string
;
range
:
number
[];
loc
: {
start
:
ITokenLocation
;
end
:
ITokenLocation
; }; }