UNPKG

interactive-gpio-node

Version:

12 lines (11 loc) 295 B
import { Observable } from "rxjs"; import { BoutonConfig } from "./boutonConfig"; export interface BoutonInterface { keys: { [key: string]: Observable<boolean | number>; }; pin: { [label: string]: number; }; configureButtons(buttons: BoutonConfig[]): void; }