UNPKG

@kui-shell/core

Version:

An Electron-based shell for cloud-native development

7 lines (6 loc) 269 B
/** * Send a synchronous message to the main process * */ export declare const tellMain: (message: string | Record<string, any>, channel?: 'asynchronous-message' | 'synchronous-message') => Promise<unknown>; export declare const init: (prefs?: {}) => Promise<void>;