From 82e8dc1a28567c550495d21433d4add38a531d76 Mon Sep 17 00:00:00 2001 From: ecyrbe Date: Tue, 1 Aug 2023 15:53:24 +0200 Subject: [PATCH] feat(match): allow to pass custom predicate --- src/internals/match/Match.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/internals/match/Match.ts b/src/internals/match/Match.ts index ab11a1e..0880860 100644 --- a/src/internals/match/Match.ts +++ b/src/internals/match/Match.ts @@ -46,4 +46,5 @@ interface ExactMatchFn extends Fn { export namespace Match { export type With = Impl.With; export type WithExact = Impl.With; + export type WithPredicate = Impl.With; }