From 4be7e2cb3c6e2ef6c95e5ede9598a33f67d16a80 Mon Sep 17 00:00:00 2001 From: Dilan Date: Fri, 28 May 2021 22:34:17 -0400 Subject: [PATCH] reverted direct import of types from node_modules --- src/types.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/types.tsx b/src/types.tsx index 9acbbd3..9b0103c 100644 --- a/src/types.tsx +++ b/src/types.tsx @@ -4,7 +4,7 @@ import { NewExpression } from "EasyQB/types/expression"; import { EXECUTE_COUNT, DB_STATUS -} from "easybasejs/src/EasybaseProvider/types" +} from "../node_modules/easybasejs/src/EasybaseProvider/types" import type { Ebconfig, @@ -16,7 +16,7 @@ import type { AddRecordOptions, DeleteRecordOptions, EmailTemplate -} from "easybasejs/src/EasybaseProvider/types" +} from "../node_modules/easybasejs/src/EasybaseProvider/types" export type { FileFromURI, @@ -30,13 +30,13 @@ export type { AddRecordOptions, DeleteRecordOptions, EmailTemplate -} from "easybasejs/src/EasybaseProvider/types" +} from "../node_modules/easybasejs/src/EasybaseProvider/types" export { POST_TYPES, EXECUTE_COUNT, DB_STATUS -} from "easybasejs/src/EasybaseProvider/types" +} from "../node_modules/easybasejs/src/EasybaseProvider/types" export interface EasybaseProviderPropsOptions { /** Custom authentication string. Can be set in integration menu. If it is set, it is required to access integration. This acts as an extra layer of security and extensibility. */