2022-01-19 13:06:13 +01:00
|
|
|
/**
|
|
|
|
* The animation-optimized FRP library powering the internals of Theatre.js.
|
|
|
|
*
|
|
|
|
* @packageDocumentation
|
|
|
|
*/
|
|
|
|
|
2021-07-02 20:26:47 +02:00
|
|
|
export type {IdentityDerivationProvider} from './Atom'
|
2021-06-27 13:37:10 +02:00
|
|
|
export {default as Atom, val, valueDerivation} from './Atom'
|
2021-06-18 13:05:06 +02:00
|
|
|
export {default as Box} from './Box'
|
|
|
|
export type {IBox} from './Box'
|
|
|
|
export {isDerivation} from './derivations/IDerivation'
|
|
|
|
export type {IDerivation} from './derivations/IDerivation'
|
|
|
|
export {default as iterateAndCountTicks} from './derivations/iterateAndCountTicks'
|
|
|
|
export {default as iterateOver} from './derivations/iterateOver'
|
|
|
|
export {default as prism} from './derivations/prism/prism'
|
2021-06-27 13:37:10 +02:00
|
|
|
export {default as pointer, getPointerParts, isPointer} from './pointer'
|
2022-04-09 17:08:08 +02:00
|
|
|
export type {Pointer, PointerType} from './pointer'
|
2021-06-18 13:05:06 +02:00
|
|
|
export {default as Ticker} from './Ticker'
|
|
|
|
export {default as PointerProxy} from './PointerProxy'
|