UNPKG
@datanimbus/bpmn-server
Version:
latest (2.3.6)
2.3.6
2.3.5
BPMN 2.0 Server including Modeling, Execution and Presistence, an open source for Node.js
@datanimbus/bpmn-server
/
src
/
scripts
/
example.ts
16 lines
•
213 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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
; }