UNPKG

523 BTypeScriptView Raw
1export { ISettingsClient, IpcClient, ILog } from '@platform/electron/lib/types';
2export * from '@uiharness/types';
3import { IpcMessage, IContext as ICoreContext, SettingsJson } from '@platform/electron/lib/types';
4import { IRuntimeConfig } from '@uiharness/types';
5export declare type IContext<E extends IpcMessage = any, S extends SettingsJson = any> = ICoreContext<E, S> & {
6 config: IRuntimeConfig;
7};
8export declare type IEvents = IFooEvent;
9declare type IFooEvent = {
10 type: 'UIHARNESS/foo';
11 payload: {};
12};