We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Symbol.matchAll
1 parent b2ccd3d commit f7990c9Copy full SHA for f7990c9
src/reactivity/ref.ts
@@ -51,7 +51,6 @@ type SymbolExtract<T> = (T extends { [Symbol.asyncIterator]: infer V }
51
: {}) &
52
(T extends { [Symbol.iterator]: infer V } ? { [Symbol.iterator]: V } : {}) &
53
(T extends { [Symbol.match]: infer V } ? { [Symbol.match]: V } : {}) &
54
- (T extends { [Symbol.matchAll]: infer V } ? { [Symbol.matchAll]: V } : {}) &
55
(T extends { [Symbol.replace]: infer V } ? { [Symbol.replace]: V } : {}) &
56
(T extends { [Symbol.search]: infer V } ? { [Symbol.search]: V } : {}) &
57
(T extends { [Symbol.species]: infer V } ? { [Symbol.species]: V } : {}) &
0 commit comments