UNPKG

@datanimbus/bpmn-server

Version:

BPMN 2.0 Server including Modeling, Execution and Presistence, an open source for Node.js

16 lines 213 B
// example.ts /** * Example type */ export type MyType = { foo: string; bar: number; }; /** * Example Interface ABC * just text here * and here too */ export interface abc { var1: string; }