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