File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * modifyOrAddFileToDataObject
3
- * @typedef {Object} ModResult
4
- * @property {boolean} ModResult.result Result of the function execution.
5
- * @property {boolean} ModResult.isAdd True if the file has been added, false - updated.
6
- * @property {ScriptJson} ModResult.data The new ScriptJson with the updated source code.
7
- */
8
- /**
9
- * updateScriptContentV3
2
+ * _getScriptContent
10
3
* @typedef {Object} ScriptJson
11
4
* @property {Array.<EntityFileData>} files Array of objects with information about files.
12
5
*/
13
6
/**
7
+ * _addFileToUserJson
14
8
* @typedef {Object} EntityFileData
15
9
* @property {string} id Unique file id.
16
10
* @property {string} name User-defined file name without extension.
17
11
* @property {string} type File type (example, `'json'`, `'server_js'` or `'html'`).
18
12
* @property {string} source Source-code or text content of the file.
19
13
*/
20
-
21
14
/**
22
- * IO_GetScriptFiles
15
+ * getScriptFiles
23
16
* @typedef {Object} ListItem
24
17
* @property {string} name User-defined file name without extension.
25
18
* @property {string} type File type (example, `'json'`, `'server_js'` or `'html'`).
You can’t perform that action at this time.
0 commit comments