16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
export interface ITargetConstructorOptions {
|
|
alias: string;
|
|
}
|
|
/**
|
|
*
|
|
*/
|
|
export declare class IpcTarget {
|
|
alias: string;
|
|
private funcArray;
|
|
constructor(optionsArg: ITargetConstructorOptions);
|
|
/**
|
|
* registers a function
|
|
*/
|
|
register(funcArrayArg: any[]): void;
|
|
}
|