Files
SysTray-X/webext/schema_windowEvent.json

30 lines
605 B
JSON
Raw Normal View History

2020-05-10 20:55:27 +02:00
[
{
"namespace": "windowEvent",
2020-08-02 16:59:53 +02:00
"functions": [
{
"name": "setCloseType",
"type": "function",
"description": "Set the close type.",
"async": true,
"parameters": [
{
"type": "integer",
"name": "type",
"minimum": 0,
"maximum": 2
}
]
}
],
2020-05-10 20:55:27 +02:00
"events": [
2020-08-02 16:59:53 +02:00
{
2020-05-10 20:55:27 +02:00
"name": "onCloseButtonClick",
"type": "function",
"description": "Fires when the user clicks on the close button of the main window.",
"parameters": []
}
]
}
]