@elliemae/ssf-guest 2.7.3 → 2.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,38 +0,0 @@
1
- import type { Events } from '@elliemae/pui-scripting-object';
2
- import type { IScriptingObjectProxyEvent, EventListeners } from '@elliemae/microfe-common';
3
- /**
4
- * ProxyEvent constructor parameter
5
- */
6
- export type ProxyEventParam = {
7
- /**
8
- * name of the event
9
- */
10
- name: string;
11
- /**
12
- * unique id of scripting object
13
- */
14
- objectId: string;
15
- };
16
- /**
17
- * Scripting Object Proxy Event implementation
18
- * @typeParam AppEvents - type of the events that the scripting object supports
19
- */
20
- export declare class ProxyEvent<AppEvents extends EventListeners = Events> implements IScriptingObjectProxyEvent<AppEvents> {
21
- /**
22
- * unique id of scripting object
23
- */
24
- readonly objectId: string;
25
- /**
26
- * name of the event
27
- */
28
- readonly name: string;
29
- /**
30
- * unique id of the event
31
- */
32
- readonly id: Extract<keyof AppEvents, string>;
33
- /**
34
- * Create a new instance of the Scripting Object Proxy Event
35
- * @param {ProxyEventParam} param - parameter for the constructor
36
- */
37
- constructor(param: ProxyEventParam);
38
- }