File tree 2 files changed +2
-10
lines changed 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>(
14
14
15
15
interface InternalConfig extends Config {
16
16
_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
25
17
}
26
18
27
19
// 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 {
41
41
/**
42
42
* Returns the first element that is a descendant of node that matches selectors.
43
43
*/
44
- queryElement ? : QueryElement
44
+ queryElement : QueryElement
45
45
/**
46
46
* Returns all element descendants of node that match selectors.
47
47
*/
48
- queryAllElements ? : QueryAllElements
48
+ queryAllElements : QueryAllElements
49
49
getElementError : ( message : string | null , container : Element ) => Error
50
50
}
51
51
You can’t perform that action at this time.
0 commit comments