aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/utils/utils.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-14 16:36:13 +0800
committerGitHub <noreply@github.com>2018-05-14 16:36:13 +0800
commit58fa35641d3016ef106496c929e48febcf827dc6 (patch)
tree3f33c2faac3b55e52098ab0b5b9883a9b62f5aee /packages/react-docs/src/utils/utils.ts
parent6aed4fb1ae27dabed027c855f2cbdc0bfb4f3b6b (diff)
parentb74957acdfc8d67d154bcb4698acd7575db7cc47 (diff)
downloaddexon-sol-tools-58fa35641d3016ef106496c929e48febcf827dc6.tar
dexon-sol-tools-58fa35641d3016ef106496c929e48febcf827dc6.tar.gz
dexon-sol-tools-58fa35641d3016ef106496c929e48febcf827dc6.tar.bz2
dexon-sol-tools-58fa35641d3016ef106496c929e48febcf827dc6.tar.lz
dexon-sol-tools-58fa35641d3016ef106496c929e48febcf827dc6.tar.xz
dexon-sol-tools-58fa35641d3016ef106496c929e48febcf827dc6.tar.zst
dexon-sol-tools-58fa35641d3016ef106496c929e48febcf827dc6.zip
Merge pull request #585 from 0xProject/feature/typedef
Add missing type definitions. Enable typedef linter rule
Diffstat (limited to 'packages/react-docs/src/utils/utils.ts')
-rw-r--r--packages/react-docs/src/utils/utils.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/react-docs/src/utils/utils.ts b/packages/react-docs/src/utils/utils.ts
index f8c1fefff..e3dd1fc62 100644
--- a/packages/react-docs/src/utils/utils.ts
+++ b/packages/react-docs/src/utils/utils.ts
@@ -1,5 +1,5 @@
export const utils = {
- spawnSwitchErr(name: string, value: any) {
+ spawnSwitchErr(name: string, value: any): Error {
return new Error(`Unexpected switch value: ${value} encountered for ${name}`);
},
};