Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Last active October 14, 2020 13:47
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/3acbb42006e590f9ae2aa0298f9d9715 to your computer and use it in GitHub Desktop.
Save ljmotta/3acbb42006e590f9ae2aa0298f9d9715 to your computer and use it in GitHub Desktop.
TodoListEnvelopeApiImpl Constructor
import { EnvelopeApiFactoryArgs } from "@kogito-tooling/envelope";
import { TodoListEnvelopeContext } from "./TodoListEnvelopeContext";
import { TodoListEnvelopeViewApi } from "./TodoListEnvelopeView";
import { TodoListChannelApi, TodoListEnvelopeApi } from "../api";
export class TodoListEnvelopeApiImpl implements TodoListEnvelopeApi {
constructor(
private readonly args: EnvelopeApiFactoryArgs<
TodoListEnvelopeApi,
TodoListChannelApi,
TodoListEnvelopeViewApi,
TodoListEnvelopeContext
>
) {}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment