mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-02 12:00:51 +08:00
Add missing optional parameter of WebContents.loadUrl()
This commit is contained in:
Vendored
+8
-2
@@ -400,7 +400,10 @@ declare module GitHubElectron {
|
||||
/**
|
||||
* Same with webContents.loadUrl(url).
|
||||
*/
|
||||
loadUrl(url: string): void;
|
||||
loadUrl(url: string, options?: {
|
||||
httpReferrer?: string;
|
||||
userAgent?: string;
|
||||
}): void;
|
||||
/**
|
||||
* Same with webContents.reload.
|
||||
*/
|
||||
@@ -537,7 +540,10 @@ declare module GitHubElectron {
|
||||
* Loads the url in the window.
|
||||
* @param url Must contain the protocol prefix (e.g., the http:// or file://).
|
||||
*/
|
||||
loadUrl(url: string): void;
|
||||
loadUrl(url: string, options?: {
|
||||
httpReferrer?: string;
|
||||
userAgent?: string;
|
||||
}): void;
|
||||
/**
|
||||
* @returns The URL of current web page.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user