mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
import { BsmException } from "../bsm-exception.model";
|
|
|
|
export interface IpcResponse<T> {
|
|
data?: T;
|
|
error?: BsmException;
|
|
success: boolean;
|
|
}
|
|
|
|
export type IpcErrorChannel = `${string}_error`;
|
|
export type IpcCompleteChannel = `${string}_complete`;
|
|
export type IpcTearDownChannel = `${string}_teardown`;
|