Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Last active October 14, 2020 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljmotta/20cb33bc55706cec4028c399952550cb to your computer and use it in GitHub Desktop.
Save ljmotta/20cb33bc55706cec4028c399952550cb to your computer and use it in GitHub Desktop.
PingPongFactory
import { MessageBusClientApi } from "@kogito-tooling/envelope-bus/dist/api";
import { PingPongChannelApi, PingPongInitArgs } from "../api";
export interface PingPongFactory {
create(initArgs: PingPongInitArgs, channelApi: MessageBusClientApi<PingPongChannelApi>): PingPong;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment