Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
reverted direct import of types from node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
dilan-dio4 committed May 29, 2021
1 parent 238859a commit 4be7e2c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -16,7 +16,7 @@ import type {
AddRecordOptions,
DeleteRecordOptions,
EmailTemplate
} from "easybasejs/src/EasybaseProvider/types"
} from "../node_modules/easybasejs/src/EasybaseProvider/types"

export type {
FileFromURI,
Expand All @@ -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. */
Expand Down

0 comments on commit 4be7e2c

Please sign in to comment.