Skip to content

ElectronHandlerDetails

Unofficial

Details about a window open request handled by a window open handler.

Import:

import type { ElectronHandlerDetails } from '@obsidian-typings/obsidian-public-latest';

Signature:

export interface ElectronHandlerDetails

Properties

PropertyTypeDescription
disposition'background-tab' | 'default' | 'foreground-tab' | 'new-window' | 'other' | 'save-to-disk'The disposition requested for the new window.
featuresstringComma-separated list of window features provided to window.open().
frameNamestringName of the window provided in window.open().
postBody?ElectronPostBodyThe post data that will be sent to the new window, if any.
referrerElectronReferrerThe referrer that will be passed to the new window.
urlstringThe resolved version of the URL passed to window.open().