File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,6 @@ const queryElementAll: QueryAllElements = <T extends Element>(
1414
1515interface InternalConfig extends Config {
1616 _disableExpensiveErrorDiagnostics : boolean
17- /**
18- * Returns the first element that is a descendant of node that matches selectors.
19- */
20- queryElement : QueryElement
21- /**
22- * Returns all element descendants of node that match selectors.
23- */
24- queryAllElements : QueryAllElements
2517}
2618
2719// It would be cleaner for this to live inside './queries', but
Original file line number Diff line number Diff line change @@ -41,11 +41,11 @@ export interface Config {
4141 /**
4242 * Returns the first element that is a descendant of node that matches selectors.
4343 */
44- queryElement ? : QueryElement
44+ queryElement : QueryElement
4545 /**
4646 * Returns all element descendants of node that match selectors.
4747 */
48- queryAllElements ? : QueryAllElements
48+ queryAllElements : QueryAllElements
4949 getElementError : ( message : string | null , container : Element ) => Error
5050}
5151
You can’t perform that action at this time.
0 commit comments