Update src/extension-support/argument-type.js
Browse files
src/extension-support/argument-type.js
CHANGED
|
@@ -48,6 +48,11 @@ const ArgumentType = {
|
|
| 48 |
*/
|
| 49 |
POLYGON: 'polygon',
|
| 50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
/**
|
| 52 |
* Costume menu (taken from tw)
|
| 53 |
*/
|
|
@@ -85,4 +90,4 @@ const ArgumentType = {
|
|
| 85 |
SEPERATOR: 'seperator'
|
| 86 |
};
|
| 87 |
|
| 88 |
-
module.exports = ArgumentType;
|
|
|
|
| 48 |
*/
|
| 49 |
POLYGON: 'polygon',
|
| 50 |
|
| 51 |
+
/**
|
| 52 |
+
* pm: creates an user-defined DOM input
|
| 53 |
+
*/
|
| 54 |
+
CUSTOM: 'custom',
|
| 55 |
+
|
| 56 |
/**
|
| 57 |
* Costume menu (taken from tw)
|
| 58 |
*/
|
|
|
|
| 90 |
SEPERATOR: 'seperator'
|
| 91 |
};
|
| 92 |
|
| 93 |
+
module.exports = ArgumentType;
|