@yaakapp/api 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/bindings/events.d.ts +5 -2
- package/package.json +1 -1
package/lib/bindings/events.d.ts
CHANGED
|
@@ -142,8 +142,11 @@ export type FormInputEditor = {
|
|
|
142
142
|
/**
|
|
143
143
|
* Don't show the editor gutter (line numbers, folds, etc.)
|
|
144
144
|
*/
|
|
145
|
-
hideGutter?: boolean
|
|
146
|
-
|
|
145
|
+
hideGutter?: boolean;
|
|
146
|
+
/**
|
|
147
|
+
* Language for syntax highlighting
|
|
148
|
+
*/
|
|
149
|
+
language?: EditorLanguage;
|
|
147
150
|
name: string;
|
|
148
151
|
/**
|
|
149
152
|
* Whether the user must fill in the argument
|