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: types/gorilla-engine/components/AmpEnv.d.ts
+44Lines changed: 44 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,65 @@
1
1
declarenamespaceGorillaEngine.UI{
2
2
interfaceAmpItem{
3
+
/**
4
+
* Sets the color of the respective envelope handle.
5
+
* This can be a named color (e.g., "red") or a hexadecimal value (e.g., "FF0000"). To specify an RGBA color set the hex alpha as a prefix (e.g., "80FF0000").
6
+
*/
3
7
color: string;
8
+
/**
9
+
* Sets the thickness of the respective envelope handle.
10
+
*/
4
11
size: number;
12
+
/**
13
+
* Sets the corner radius for the respective envelope handle.
14
+
*/
5
15
cornerRadius: number;
16
+
/**
17
+
* Sets the default value for the respective
18
+
*/
6
19
value: number;
20
+
/**
21
+
* Sets a value binding for the respective envelope handle.
22
+
*/
7
23
"value&": any;
24
+
/**
25
+
* Sets the visibility of the respective envelope handle.
26
+
* If set to `false`, the handle will not be rendered.
27
+
*/
8
28
visible: boolean;
29
+
/**
30
+
* Sets the path to the image used for the respective envelope handle.
31
+
*/
9
32
imagePath: string;
33
+
/**
34
+
* Sets the text displayed on the respective envelope handle.
35
+
*/
10
36
text: string;
37
+
/**
38
+
* Sets the color of the text. This can be a named color (e.g., "red") or a hexadecimal value (e.g., "FF0000"). To specify an RGBA color set the hex alpha as a prefix (e.g., "80FF0000").
0 commit comments