UNPKG
webmat
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
Formats your entire project with clang-format
github.com/PolymerLabs/webmat
PolymerLabs/webmat
webmat
/
custom_typings
/
esprima.d.ts
11 lines
(8 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
*
as
esprima
from
'esprima'
;
declare
module
'esprima'
{
export
interface
ESLocation
{
line
:
number
;
column
:
number
; }
export
interface
Token
{
loc
?: {
start
:
ESLocation
;
end
:
ESLocation
;} } }