From edf3fd094d14b3c9ff31789e3c6968abe2865392 Mon Sep 17 00:00:00 2001 From: Pier Roberto Lucisano Date: Mon, 11 Nov 2024 17:48:46 +0100 Subject: [PATCH] Replace deprecated Predicate --- src/utils/struct.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/struct.ts b/src/utils/struct.ts index e20c830..21c5843 100644 --- a/src/utils/struct.ts +++ b/src/utils/struct.ts @@ -1,4 +1,5 @@ -import { pipe, Predicate } from 'fp-ts/function' +import { pipe } from 'fp-ts/function' +import { Predicate } from 'fp-ts/Predicate' import * as RA from 'fp-ts/ReadonlyArray' import * as RR from 'fp-ts/ReadonlyRecord' import * as S from 'fp-ts/struct'