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

Commit

Permalink
Missed a relative import in types/types.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
dilan-dio4 committed May 29, 2021
1 parent b30fa79 commit 422f7d1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/types/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 "./jsTypes"

import type {
Ebconfig,
Expand All @@ -16,7 +16,7 @@ import type {
AddRecordOptions,
DeleteRecordOptions,
EmailTemplate
} from "easybasejs/src/EasybaseProvider/types"
} from "./jsTypes"

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
14 changes: 9 additions & 5 deletions typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,23 @@
"entryPoints": [
"./src/"
],
"out": "docs",
"out": "easybase-react",
"excludeProtected": true,
"exclude": [
"./src/EasybaseProvider.tsx",
"./src/index.tsx",
"./src/cache.tsx",
"./src/typings.d.ts",
"./src/react-app-env.d.ts",
"./src/decs.d.ts"
"./src/types/typings.d.ts",
"./src/types/react-app-env.d.ts",
"./src/types/decs.d.ts"
],
"externalPattern": [
"./src/types/*.ts",
"./src/types/*.tsx"
],
"gitRevision": "dev",
"excludePrivate": true,
"excludeExternals": false,
"categorizeByGroup": false,
"categorizeByGroup": true,
"gaID": "UA-180320774-1"
}

0 comments on commit 422f7d1

Please sign in to comment.