@ginden/blinkstick-v2
Version:
Improved Blickstick API for Node.js
9 lines • 305 B
TypeScript
import type { SimpleFrame } from './simple-frame';
import type { ComplexFrame } from './complex-frame';
import type { WaitFrame } from './wait-frame';
/**
* @summary Any frame type.
* @category Animation
*/
export type Frame = SimpleFrame | ComplexFrame | WaitFrame;
//# sourceMappingURL=frame.d.ts.map