UNPKG

textmode.js

Version:

textmode.js is a lightweight creative coding library for creating real-time ASCII art on the web.

10 lines (9 loc) 707 B
export { type Constructor, type Mixin, $applyMixins } from './TextmodifierMixin'; export { RenderingMixin } from './RenderingMixin'; export { AnimationMixin } from './AnimationMixin'; export { MouseMixin } from './MouseMixin'; export { TouchMixin } from './TouchMixin'; export { KeyboardMixin } from './KeyboardMixin'; export type { MousePosition, MouseEventData, MouseEventHandler } from '../managers/MouseManager'; export type { KeyboardEventData, KeyboardEventHandler, KeyState } from '../managers/KeyboardManager'; export type { TouchEventData, TouchLongPressEventData, TouchPinchEventData, TouchPosition, TouchRotateEventData, TouchSwipeEventData, TouchTapEventData, } from '../managers/TouchManager';