2022-01-19 13:06:13 +01:00
|
|
|
/**
|
|
|
|
* The animation-optimized FRP library powering the internals of Theatre.js.
|
|
|
|
*
|
|
|
|
* @packageDocumentation
|
|
|
|
*/
|
|
|
|
|
2022-12-01 14:28:52 +01:00
|
|
|
export type {IdentityPrismProvider} from './Atom'
|
2022-12-01 14:26:17 +01:00
|
|
|
export {default as Atom, val, pointerToPrism} from './Atom'
|
2021-06-18 13:05:06 +02:00
|
|
|
export {default as Box} from './Box'
|
|
|
|
export type {IBox} from './Box'
|
2022-12-01 14:47:20 +01:00
|
|
|
export {isPrism} from './prisms/Interface'
|
|
|
|
export type {Prism} from './prisms/Interface'
|
|
|
|
export {default as iterateAndCountTicks} from './prisms/iterateAndCountTicks'
|
|
|
|
export {default as iterateOver} from './prisms/iterateOver'
|
|
|
|
export {default as prism} from './prisms/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'
|