library.listTokenLibraries
library.listTokenLibraries() Function
• Introduced in version 1.11.0
List available Lib:Token add-on libraries. Information is returned as an array of JSON objects. Information returned comes from the following Token properties:
libVersion
libAuthors
(value should be a comma separated list if there is more than one)libWebsite
libGitUrl
libLicense
libDescription
libShortDescription
Usage
library.listTokenLibraries()
Parameters
None
-
Example
List loaded Add-Ons.
< syntaxhighlight lang="mtmacro" line>
Token Libraries Loaded:
[r: json.indent(library.listTokenLibraries(),2)]
</syntaxhighlight > Returns: < syntaxhighlight lang="JSON"> Token Libraries Loaded: [
{ "name": "lib:mytoken", "namespace": "mytoken", "version": "0.1", "website": "www.google.com", "gitUrl": "none.github.com", "authors": ["Turing"], "license": "None", "description": "Long Description", "shortDescription": "Short Desc.", "allowsUrlAccess": true }
]
</syntaxhighlight >See Also
Version Changes
- 1.11.0 - Function added