-
Notifications
You must be signed in to change notification settings - Fork 0
/
gel.js
38 lines (32 loc) · 976 Bytes
/
gel.js
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
import * as REF from './ref.js'
import { mint } from './mint.js'
import { GelSheet } from './sheet.js'
import { Controlor } from './controlor.js'
import { GelPlates } from './template.js'
import { funcs } from './funcs.js'
import { is } from './is.js'
import { StackingList } from './list.js'
import { RevolvingList } from './list.js'
import { trace } from './trace.js'
import { XY } from './xy.js'
export const Gel = {
mint,
Color: Controlor,
Plates: GelPlates,
Sheet: GelSheet,
fetch: funcs.cachedFetch,
xy: XY,
CssAppearanceReset: REF.CSSAPPEARANCERESET,
StackingList,
RevolvingList,
writeAttrs: funcs.writeAttrs,
mimeTypes: REF.MIMETYPES,
templify: funcs.templify,
throttle: funcs.throttle,
debounce: funcs.debounce,
makeEl: funcs.makeEl,
trace: trace,
hash: funcs.hash,
is,
g: funcs.g,
}