mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import { Observable } from "rxjs";
|
|
import { IpcResponse } from "./ipc-response.interface";
|
|
|
|
export interface IpcRequest<T>{
|
|
args?: T,
|
|
responceChannel?: string,
|
|
}
|
|
|
|
export type IpcReplier= <T>(data: Observable<T>) => void; |