UNPKG

led-matrix-ts

Version:

Highly customizable led matrix for the browser

18 lines 645 B
import { SideScroller } from "./side-scroller"; import { VerticalScroller } from "./vertical-scroller"; export var ScrollerTypes; (function (ScrollerTypes) { ScrollerTypes[ScrollerTypes["Side"] = 0] = "Side"; ScrollerTypes[ScrollerTypes["Vertical"] = 1] = "Vertical"; })(ScrollerTypes || (ScrollerTypes = {})); export class ScrollerBuilder { static build(scrollerType) { switch (scrollerType) { case ScrollerTypes.Side: return new SideScroller(); case ScrollerTypes.Vertical: return new VerticalScroller(); } } } //# sourceMappingURL=scroller-builder.js.map