UNPKG
ccgjs
Version:
latest (0.1.0-beta.1)
0.1.0-beta.1
A combinatory categorial grammar (CCG) library for the web.
github.com/wisn/ccgjs
wisn/ccgjs
ccgjs
/
src
/
index.ts
14 lines
(11 loc)
•
228 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
DOM
from
'./ccg.dom'
;
import
Reader
, *
as
ReaderTypes
from
'./ccg.reader'
;
import
Tree
, *
as
TreeTypes
from
'./ccg.tree'
;
export
const
CCG
= {
DOM
,
Reader
,
ReaderTypes
,
Tree
,
TreeTypes
, };
export
default
CCG
;