diff --git a/packages/patterns/src/patterns/patternMatchers.js b/packages/patterns/src/patterns/patternMatchers.js index f92aa0fe60..7a4b5ac22f 100644 --- a/packages/patterns/src/patterns/patternMatchers.js +++ b/packages/patterns/src/patterns/patternMatchers.js @@ -1696,12 +1696,4 @@ export const { M, } = makePatternKit(); -/** - * A method guard, for inclusion in an interface guard, that enforces only that - * all arguments are passable and that the result is passable. (In far classes, - * "any" means any *passable*.) This is the least possible enforcement for a - * method guard, and is implied by all other method guards. - */ -export const MinMethodGuard = M.call().rest(M.any()).returns(M.any()); - MM = M;