mcopy/app/lib/alert/index.d.ts

26 lines
389 B
TypeScript
Raw Normal View History

import type { WebContents } from 'electron';
export declare class Alert {
private ipc;
private log;
private id;
private cb;
private ui;
constructor(ui: WebContents);
/**
*
**/
private init;
/**
*
**/
private listen;
/**
*
**/
private listener;
/**
*
**/
start(cmd: string): Promise<number>;
}