mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
32 lines
444 B
JavaScript
32 lines
444 B
JavaScript
/** @externs */
|
|
|
|
/**
|
|
* @constructor
|
|
* @name EventTarget
|
|
*/
|
|
function EventTarget() {}
|
|
|
|
/** @type {EventTarget} */
|
|
var window;
|
|
|
|
/**
|
|
* @see http://dev.w3.org/html5/workers/
|
|
* @interface
|
|
* @extends {EventTarget}
|
|
*/
|
|
function WorkerGlobalScope() {}
|
|
|
|
/** @type {WorkerLocation} */
|
|
WorkerGlobalScope.prototype.location;
|
|
|
|
/**
|
|
* @constructor
|
|
* @implements {EventTarget}
|
|
*/
|
|
function Node() {}
|
|
|
|
/**
|
|
* @type {Node}
|
|
*/
|
|
Node.prototype.parentNode;
|