-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.dev.ts
38 lines (37 loc) · 981 Bytes
/
index.dev.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
/**
* @name UIElement DEV_MODE
* @version 0.9.4
* @author Esther Brunner
*/
export {
type Signal, type State, type Computed,
UNSET, state, computed, effect, batch, isState, isSignal, toSignal
} from '@zeix/cause-effect'
export {
type EnqueueDedupe,
enqueue, animationFrame
} from '@zeix/pulse'
export {
type AttributeParser, type ValueOrAttributeParser,
UIElement
} from './src/ui-element'
export {
type StateLike, type StateLikeOrStateLikeFactory, type EventListenerOrEventListenerFactory,
UI
} from './src/core/ui'
export {
LOG_DEBUG, LOG_INFO, LOG_WARN, LOG_ERROR, log
} from './src/core/log'
export {
type Context, type UnknownContext,
useContext
} from './src/core/context'
export {
parse, asBoolean, asInteger, asNumber, asString, asEnum, asJSON
} from './src/core/parse'
export {
type ElementUpdater,
emit, updateElement,
createElement, removeElement,
setText, setProperty, setAttribute, toggleAttribute, toggleClass, setStyle
} from './src/lib/effects'