UNPKG
blinkstick-ts
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
BlinkStick TypeScript implementation
github.com/jkopcsek/blinkstick-ts
jkopcsek/blinkstick-ts
blinkstick-ts
/
src
/
led.interface.ts
6 lines
(5 loc)
•
115 B
text/typescript
View Raw
1
2
3
4
5
6
import {
Color
}
from
"./
color
"; export interface Led { setColor(
color
: Color): void; getColor(): Color; }