[ type ] AppEvent
Description:
Represents an application event used in ui.onAppEvents(callback).
Type: Object
Properties:
| Name | Type | Description |
|---|---|---|
|
string | One of event types: |
|
Array.<string> | File list. Present when type is |
|
string | Present when type is |
Examples:
Example of a `print` AppEvent object:
const e = {
type: "print",
files: [
"/home/mike/Desktop/Document.pdf"
]
};
