UNPKG

textmode.js

Version:

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

9 lines (8 loc) 336 B
import type { Mixin } from './TextmodifierMixin'; import type { IAnimationMixin } from './interfaces/IAnimationMixin'; /** * Mixin that adds animation capabilities to a class * @param Base The base class to extend * @returns Extended class with animation capabilities */ export declare const AnimationMixin: Mixin<IAnimationMixin>;