ElectronHandlerDetails
Unofficial
Details about a window open request handled by a window open handler.
Import:
import type { ElectronHandlerDetails } from '@obsidian-typings/obsidian-catalyst-latest';Signature:
export interface ElectronHandlerDetailsProperties
| Property | Type | Description | |
|---|---|---|---|
| disposition | 'background-tab' | 'default' | 'foreground-tab' | 'new-window' | 'other' | 'save-to-disk' | The disposition requested for the new window. | |
| features | string | Comma-separated list of window features provided to window.open(). | |
| frameName | string | Name of the window provided in window.open(). | |
| postBody? | ElectronPostBody | The post data that will be sent to the new window, if any. | |
| referrer | ElectronReferrer | The referrer that will be passed to the new window. | |
| url | string | The resolved version of the URL passed to window.open(). |