UI for Zipcoin Blue

telemetry.d.ts 382B

12345678
  1. import { IProject, ITelemetry, IonicEnvironment } from '../definitions';
  2. export declare class Telemetry implements ITelemetry {
  3. env: IonicEnvironment;
  4. resetToken(): Promise<void>;
  5. sendCommand(command: string, args: string[]): Promise<void>;
  6. }
  7. export declare function sendCommand(env: IonicEnvironment, project: IProject, command: string, args: string[]): Promise<void>;