aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/utils/typedoc_utils.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-06-06 22:26:04 +0800
committerFabio Berger <me@fabioberger.com>2018-06-06 22:26:04 +0800
commitcf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78 (patch)
tree1ab6a8d6b8588707286fc56a632dca9ceca7e7ac /packages/react-docs/src/utils/typedoc_utils.ts
parentaf1d5fce6ea355b12bf5f63f51ea81ff596f7868 (diff)
downloaddexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar
dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.gz
dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.bz2
dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.lz
dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.xz
dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.zst
dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.zip
Move spawnSwitchErr to @0xproject/utils
Diffstat (limited to 'packages/react-docs/src/utils/typedoc_utils.ts')
-rw-r--r--packages/react-docs/src/utils/typedoc_utils.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/react-docs/src/utils/typedoc_utils.ts b/packages/react-docs/src/utils/typedoc_utils.ts
index 5a672f10f..5633d9040 100644
--- a/packages/react-docs/src/utils/typedoc_utils.ts
+++ b/packages/react-docs/src/utils/typedoc_utils.ts
@@ -1,3 +1,4 @@
+import { errorUtils } from '@0xproject/utils';
import * as _ from 'lodash';
import { DocsInfo } from '../docs_info';
@@ -19,7 +20,6 @@ import {
TypescriptFunction,
TypescriptMethod,
} from '../types';
-import { utils } from '../utils/utils';
export const typeDocUtils = {
isType(entity: TypeDocNode): boolean {
@@ -197,7 +197,7 @@ export const typeDocUtils = {
break;
default:
- throw utils.spawnSwitchErr('kindString', entity.kindString);
+ throw errorUtils.spawnSwitchErr('kindString', entity.kindString);
}
});
return docSection;