Revision control
Copy as Markdown
Other Tools
[
{
"namespace": "myapi",
"events": [
{
"name": "onToolbarClick",
"type": "function",
"description": "Fires when the user clicks anywhere on the toolbar in the main window.",
"parameters": [
{
"name": "toolbarId",
"type": "string",
"description": "The ID of the toolbar the user clicked."
},
{
"type": "integer",
"name": "x",
"minimum": 0,
"description": "The X position of the mouse when the user clicked."
},
{
"type": "integer",
"name": "y",
"minimum": 0,
"description": "The Y position of the mouse when the user clicked."
}
]
}
],
"functions": [
{
"name": "sayHello",
"type": "function",
"description": "Says hello to the user.",
"async": true,
"parameters": [
{
"name": "name",
"type": "string",
"description": "Who to say hello to."
}
]
}
]
}
]