You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/camundaBuiltins.js
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,21 @@
6
6
* Make sure you edit the template file `tasks/camundaBuiltins.template.js` and run `compile:builtins` (or `update:builtins`) to update the file in lib.
7
7
*/
8
8
9
+
/**
10
+
* @typedef { {
11
+
* name: string,
12
+
* info: string,
13
+
* type?: 'function',
14
+
* params?: Array<{
15
+
* name: string;
16
+
* }>
17
+
* }} Builtin
18
+
*/
19
+
9
20
/**
10
21
* List of standard FEEL built-in functions (excluding Camunda-specific extensions).
Copy file name to clipboardExpand all lines: tasks/camundaBuiltins.template.js
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,30 +6,41 @@
6
6
* Make sure you edit the template file `tasks/camundaBuiltins.template.js` and run `compile:builtins` (or `update:builtins`) to update the file in lib.
7
7
*/
8
8
9
+
/**
10
+
* @typedef { {
11
+
* name: string,
12
+
* info: string,
13
+
* type?: 'function',
14
+
* params?: Array<{
15
+
* name: string;
16
+
* }>
17
+
* }} Builtin
18
+
*/
19
+
9
20
/**
10
21
* List of standard FEEL built-in functions (excluding Camunda-specific extensions).
0 commit comments