forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpending.js
68 lines (55 loc) · 1.65 KB
/
pending.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview Externs for stuff not added to the Closure compiler yet, but
* should get added.
* @externs
*/
/**
* TODO(katie): Remove this once length is added to the Closure
* chrome_extensions.js.
* An event from the TTS engine to communicate the status of an utterance.
* @constructor
*/
function TtsEvent() {}
/** @type {number} */
TtsEvent.prototype.length;
/**
* @see https://drafts.css-houdini.org/css-typed-om/#stylepropertymap
* @typedef {{set: function(string, *):void,
* append: function(string, *):void,
* delete: function(string):void,
* clear: function():void }}
* TODO(rbpotter): Remove this once it is added to Closure Compiler itself.
*/
class StylePropertyMap {
/**
* @param {string} property
* @param {*} values
*/
set(property, values) {}
/**
* @param {string} property
* @param {*} values
*/
append(property, values) {}
/** @param {string} property */
delete(property) {}
clear() {}
}
/** @type {!StylePropertyMap} */
HTMLElement.prototype.attributeStyleMap;
/**
* @see https://drafts.css-houdini.org/css-typed-om/#stylepropertymapreadonly
*/
class StylePropertyMapReadOnly {
/** @param {string} property */
get(property) {}
}
/** @return {!StylePropertyMapReadOnly} */
HTMLElement.prototype.computedStyleMap = function() {};
/** @return {!AnimationEffectTimingProperties} */
AnimationEffect.prototype.getTiming = function() {};
/** @return {!Array<!Object>} */
AnimationEffect.prototype.getKeyframes = function() {};