/** * This file was auto-generated by Fern from our API Definition. */ /** * Wait until the specified loading event occurs. Defaults to 'load', which waits until the page dom and it's assets have loaded. 'domContentLoaded' will wait until the dom has loaded, 'complete' will wait until the page and all it's iframes have loaded it's dom and assets. 'noWait' will not wait for any loading event and will return immediately. */ export type WindowLoadUrlV1BodyWaitUntil = "load" | "domContentLoaded" | "complete" | "noWait"; export declare const WindowLoadUrlV1BodyWaitUntil: { readonly Load: "load"; readonly DomContentLoaded: "domContentLoaded"; readonly Complete: "complete"; readonly NoWait: "noWait"; };