mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
import { BsmException } from "./bsm-exception.model";
|
|
|
|
export interface IpcRequest<T>{
|
|
args?: T,
|
|
responceChannel?: string
|
|
}
|
|
|
|
export interface IpcResponse<T>{
|
|
data?: T,
|
|
error?: BsmException,
|
|
success: boolean,
|
|
} |