mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Name updates
This commit is contained in:
parent
e22846ad77
commit
a1747548e6
4
types/chrome/chrome-webview.d.ts
vendored
4
types/chrome/chrome-webview.d.ts
vendored
@ -15,13 +15,13 @@
|
||||
/**
|
||||
* Use the <code>webview</code> tag to actively load live content from the web over the network and embed it in your Chrome App. Your app can control the appearance of the <code>webview</code> and interact with the web content, initiate navigations in an embedded web page, react to error events that happen within it, and more (see <a href=\"#usage\">Usage</a>).
|
||||
*/
|
||||
declare namespace chrome.webviewTag {
|
||||
declare namespace chrome.webview {
|
||||
/** Options that determine what data should be cleared by `clearData`. */
|
||||
export interface ClearDataOptions {
|
||||
/** Clear data accumulated on or after this date, represented in milliseconds since the epoch (accessible via the getTime method of the JavaScript <code>Date</code> object). If absent, defaults to <code>0</code> (which would remove all browsing data). */
|
||||
since: number;
|
||||
}
|
||||
export interface WindowEvent extends chrome.events.Event<() => void> {}
|
||||
export interface WindowEvent extends chrome.events.Event<() => void> { }
|
||||
|
||||
export interface ConsoleEvent extends Event {
|
||||
/**
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import webview = chrome.webviewTag;
|
||||
import webview = chrome.webview;
|
||||
|
||||
let element: webview.HTMLWebViewElement;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user