@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
12 lines • 417 B
TypeScript
import { Observable } from "rxjs";
import type { AppAndVersion } from "./connectApp";
export type AttemptToQuitAppEvent = {
type: "unresponsiveDevice";
} | {
type: "appDetected";
} | {
type: "appQuitted";
};
declare const attemptToQuitApp: (transport: any, appAndVersion?: AppAndVersion) => Observable<AttemptToQuitAppEvent>;
export default attemptToQuitApp;
//# sourceMappingURL=attemptToQuitApp.d.ts.map