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