-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
41 lines (37 loc) · 936 Bytes
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { NeithServer } from "./neith/server/server.ts"
import { Route, NeithRouter } from "./neith/router/router.ts"
import {Import, DependencyGraph} from "./neith/ioc/dependencyGraph.ts"
import { NeithIOC } from "./neith/ioc/ioc.ts"
import { NeithDOM } from "./neith/dom/dom.ts"
import { NeithCompiler } from "./neith/compiler/compiler.ts"
import { NeithComponent } from "./neith/compiler/component.ts"
import { NeithJSCompiler } from "./neith/compiler/js.ts"
import { isNeithProp, handleNeithProp } from "./neith/compiler/props.ts"
interface NeithProp {
name: string,
value: string
}
interface NeithElement {
tag: string,
props: NeithProp[],
text: string,
children: NeithElement[],
}
export type {
NeithProp,
NeithElement,
Route,
Import
}
export {
NeithServer,
NeithRouter,
DependencyGraph,
NeithIOC,
NeithDOM,
NeithCompiler,
NeithComponent,
NeithJSCompiler,
isNeithProp,
handleNeithProp
}