UNPKG

252 BTypeScriptView Raw
1import { IConfig, IPCMessage, IonicContext } from '../definitions';
2export interface SendMessageDeps {
3 config: IConfig;
4 ctx: IonicContext;
5}
6export declare function sendMessage({ config, ctx }: SendMessageDeps, msg: IPCMessage): Promise<void>;