UNPKG

@ionic/cli

Version:

A tool for creating and developing Ionic Framework mobile apps.

8 lines (7 loc) 240 B
import { ServeDetails } from '../definitions'; export interface IPCEvent<E extends string, D extends object> { type: 'event'; event: E; data: D; } export declare function emit(event: 'serve:ready', data: ServeDetails): boolean;