chore(build): Fix .d.ts generation errors caused by invisible types of exported declarations
Fixes #3098
This commit is contained in:

committed by
Alex Eagle

parent
f42382db3b
commit
573c047d50
@ -338,14 +338,14 @@ export class SelectorMatcher {
|
||||
}
|
||||
|
||||
|
||||
class SelectorListContext {
|
||||
export class SelectorListContext {
|
||||
alreadyMatched: boolean = false;
|
||||
|
||||
constructor(public selectors: CssSelector[]) {}
|
||||
}
|
||||
|
||||
// Store context to pass back selector and context when a selector is matched
|
||||
class SelectorContext {
|
||||
export class SelectorContext {
|
||||
notSelectors: CssSelector[];
|
||||
|
||||
constructor(public selector: CssSelector, public cbContext: any,
|
||||
|
@ -270,4 +270,4 @@ function moveChildNodes(source: Node, target: Node) {
|
||||
DOM.appendChild(target, currChild);
|
||||
currChild = nextChild;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user