UNPKG

blinkstick-ts

Version:
9 lines (8 loc) 327 B
import { IBlinkStick } from "../blinkstick.interface"; import { LedLine } from "../led-line.interface"; import { Led } from "../led.interface"; export declare class Simulation { static createLed(): Led; static createLedLine(count: number): LedLine; static createBlinkStickWithLedLine(count: number): IBlinkStick; }