cic-internal-integration/apps/cic-meta/src/transport.ts

12 lines
129 B
TypeScript
Raw Normal View History

2021-02-08 18:31:29 +01:00
interface SubConsumer {
post(string)
}
interface PubSub {
pub(v:string):boolean
close()
}
export { PubSub, SubConsumer };