UNPKG
@onap-project/sdc-pubsub
Version:
latest (1.0.30)
1.0.30
1.0.29
1.0.23
1.0.22
1.0.21
Publish Subscribe library using post message for sdc plugins
@onap-project/sdc-pubsub
/
src
/
plugin-pubsub.d.ts
7 lines
(6 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
BasePubSub
}
from
'./base-pubsub'
;
export
declare
class
PluginPubSub
extends
BasePubSub
{
constructor
(
pluginId
:
string
,
parentUrl
:
string
,
eventsToWait
?:
string
[]
);
subscribe
(
eventsToWait
?:
string
[]):
void
;
unsubscribe
():
void
; }