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
/
dist
/
simulation
/
simulated-led.d.ts
10 lines
(9 loc)
•
246 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Color
}
from
"../color"
;
import
{
Led
}
from
"../led.interface"
;
export
declare
class
SimulatedLed
implements
Led
{
private
color;
constructor
(
);
setColor
(
color
:
Color
):
void
;
getColor
():
Color
;
toString
():
string
; }