11 lines
261 B
Haxe
11 lines
261 B
Haxe
package webextension_polyfill.namespaces.devtools_inspectedwindow.devtoolsinspectedwindow;
|
|
|
|
/**
|
|
A resource within the inspected page, such as a document, a script, or an image.
|
|
**/
|
|
typedef Resource = {
|
|
/**
|
|
The URL of the resource.
|
|
**/
|
|
var url : String;
|
|
}; |