Skip to content

Commit f40e338

Browse files
committed
fix(build): remove local idls
1 parent 06207b4 commit f40e338

File tree

6 files changed

+7
-702
lines changed

6 files changed

+7
-702
lines changed

baselines/dom.generated.d.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3531,6 +3531,8 @@ declare var Comment: {
35313531
/** The DOM CompositionEvent represents events that occur due to the user indirectly entering text. */
35323532
interface CompositionEvent extends UIEvent {
35333533
readonly data: string;
3534+
/** @deprecated */
3535+
initCompositionEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: WindowProxy | null, dataArg?: string): void;
35343536
}
35353537

35363538
declare var CompositionEvent: {
@@ -14737,7 +14739,7 @@ interface UIEvent extends Event {
1473714739
/** @deprecated */
1473814740
readonly which: number;
1473914741
/** @deprecated */
14740-
initUIEvent(): void;
14742+
initUIEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: Window | null, detailArg?: number): void;
1474114743
}
1474214744

1474314745
declare var UIEvent: {
@@ -17577,11 +17579,11 @@ declare var XPathResult: {
1757717579
/** An XSLTProcessor applies an XSLT stylesheet transformation to an XML document to produce a new XML document as output. It has methods to load the XSLT stylesheet, to manipulate <xsl:param> parameter values, and to apply the transformation to documents. */
1757817580
interface XSLTProcessor {
1757917581
clearParameters(): void;
17580-
getParameter(namespaceURI: string, localName: string): any;
17582+
getParameter(namespaceURI: string | null, localName: string): any;
1758117583
importStylesheet(style: Node): void;
17582-
removeParameter(namespaceURI: string, localName: string): void;
17584+
removeParameter(namespaceURI: string | null, localName: string): void;
1758317585
reset(): void;
17584-
setParameter(namespaceURI: string, localName: string, value: any): void;
17586+
setParameter(namespaceURI: string | null, localName: string, value: any): void;
1758517587
transformToDocument(source: Node): Document;
1758617588
transformToFragment(source: Node, output: Document): DocumentFragment;
1758717589
}

0 commit comments

Comments
 (0)