Skip to content

Commit 5cc4937

Browse files
committed
Update types.
1 parent 16e695f commit 5cc4937

File tree

4 files changed

+0
-15
lines changed

4 files changed

+0
-15
lines changed

types/lib/legacy/polymer.dom.d.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ declare namespace Polymer {
4747
*/
4848
readonly activeElement: Node|null|undefined;
4949

50-
/**
51-
* @param node Node for which to create a Polymer.dom helper object.
52-
*/
53-
constructor(node: Node|null);
54-
5550
/**
5651
* Returns an instance of `Polymer.FlattenedNodesObserver` that
5752
* listens for node changes on this element.
@@ -181,5 +176,4 @@ declare class EventApi {
181176
* Returns the `composedPath` for this event.
182177
*/
183178
readonly path: EventTarget[];
184-
constructor(event: any);
185179
}

types/lib/utils/debounce.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
declare namespace Polymer {
1616

1717
class Debouncer {
18-
constructor();
1918

2019
/**
2120
* Creates a debouncer if no debouncer is passed as a parameter

types/lib/utils/flattened-nodes-observer.d.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,6 @@ declare namespace Polymer {
5454
*/
5555
class FlattenedNodesObserver {
5656

57-
/**
58-
* @param target Node on which to listen for changes.
59-
* @param callback Function called when there are additions
60-
* or removals from the target's list of flattened nodes.
61-
*/
62-
constructor(target: _Element|null, callback: ((p0: _Element, p1: {target: _Element, addedNodes: _Element[], removedNodes: _Element[]}) => void)|null);
63-
6457
/**
6558
* Returns the list of flattened nodes for the given `node`.
6659
* This list consists of a node's children and, for any children

types/lib/utils/html-tag.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*/
1818
declare class LiteralString {
1919
value: string;
20-
constructor(string: any);
2120

2221
/**
2322
* @returns LiteralString string value

0 commit comments

Comments
 (0)