Skip to content

Commit 991df1e

Browse files
committed
Fix some typing issues
1 parent b97aa9b commit 991df1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

html-api-debugger/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ let mutationObserver = null;
5555
* @typedef HtmlApiResponse
5656
* @property {any} error
5757
* @property {Supports} supports
58-
* @property {{tree: any, compatMode: string, documentTitle: string|null, doctypeName: string|null, doctypePublicId: string|null, doctypeSystemId: string|null, playback: ReadonlyArray<[string,any]> }|null} result
58+
* @property {{tree: any, compatMode: string, documentTitle: string|null, doctypeName: string|null, doctypePublicId: string|null, doctypeSystemId: string|null, playback: ReadonlyArray<[string,any]>, warnings: ReadonlyArray<string> }|null} result
5959
* @property {string|null} normalizedHtml
6060
* @property {string} html
6161
*
@@ -768,7 +768,7 @@ const store = createStore(NS, {
768768
}
769769
}
770770
}
771-
store.state.selector = null;
771+
store.state.selector = '';
772772
yield store.callAPI();
773773
},
774774
});

0 commit comments

Comments
 (0)