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
/
dist
/
ccg.dom.d.ts
9 lines
(8 loc)
•
212 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
Tree
from
'./ccg.tree'
;
export
default
class
DOM
{
tree
?:
Tree
;
private
domBuilder?;
constructor
(
tree
:
string
|
Tree
);
create
(
fn
?:
Function
):
any
;
createTable
():
HTMLElement
; }