Skip to content

Commit f7990c9

Browse files
authored
types: remove Symbol.matchAll (#470)
1 parent b2ccd3d commit f7990c9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/reactivity/ref.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ type SymbolExtract<T> = (T extends { [Symbol.asyncIterator]: infer V }
5151
: {}) &
5252
(T extends { [Symbol.iterator]: infer V } ? { [Symbol.iterator]: V } : {}) &
5353
(T extends { [Symbol.match]: infer V } ? { [Symbol.match]: V } : {}) &
54-
(T extends { [Symbol.matchAll]: infer V } ? { [Symbol.matchAll]: V } : {}) &
5554
(T extends { [Symbol.replace]: infer V } ? { [Symbol.replace]: V } : {}) &
5655
(T extends { [Symbol.search]: infer V } ? { [Symbol.search]: V } : {}) &
5756
(T extends { [Symbol.species]: infer V } ? { [Symbol.species]: V } : {}) &

0 commit comments

Comments
 (0)