@iotize/ionic
Version:
Iotize specific building blocks on top of @ionic/angular.
10 lines (9 loc) • 422 B
TypeScript
import { InjectionToken } from '@angular/core';
export interface ExecuteTapActionServiceInterface {
/**
* Execute a callable that requires a Tap connection
* @param callable action to execute that requires a Tap device connection
*/
executeTapAction<T>(callable: () => Promise<T>): Promise<T>;
}
export declare const TAP_EXECUTE_TAP_ACTION_SERVICE: InjectionToken<ExecuteTapActionServiceInterface>;