entrypoint.d.ts 310 B

1234567891011
  1. import { IOConfig } from '../pmx';
  2. export declare class Entrypoint {
  3. private io;
  4. constructor();
  5. events(): void;
  6. sensors(): void;
  7. actuators(): void;
  8. onStart(cb: Function): void;
  9. onStop(err: Error, cb: Function, code: number, signal: string): any;
  10. conf(): IOConfig | undefined;
  11. }