From d0b21a4fc74186691ab7a8dbf1d0d7d21422ecf2 Mon Sep 17 00:00:00 2001 From: Evgeny Nikiforov Date: Thu, 22 Dec 2022 03:30:02 +0300 Subject: [PATCH] array require fix --- src/parser/getFields.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/getFields.ts b/src/parser/getFields.ts index 919558e..d07408b 100644 --- a/src/parser/getFields.ts +++ b/src/parser/getFields.ts @@ -7,7 +7,7 @@ file, You can obtain one at https://mozilla.org/MPL/2.0/. import * as ts from "typescript"; import * as ReaderEither from "fp-ts/lib/ReaderEither"; -import * as array from "fp-ts/lib/array"; +import * as array from "fp-ts/lib/Array"; import * as Option from "fp-ts/lib/Option"; import * as Either from "fp-ts/lib/Either"; import { pipe, flow } from "fp-ts/lib/function";