aboutsummaryrefslogtreecommitdiffstats
path: root/webui/types/remark-react
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2020-02-04 22:03:21 +0100
committerQuentin Gliech <quentingliech@gmail.com>2020-02-11 20:54:37 +0100
commit022f510369688084af5bcf314a97fd332d7ee265 (patch)
tree0adf3ac82d487712f095a7692b51aaefb680be72 /webui/types/remark-react
parent6a502c145bd8f2e2e1a9c0b103c11f0433c60737 (diff)
downloadgit-bug-022f510369688084af5bcf314a97fd332d7ee265.tar.gz
webui: convert more things to typescript
Diffstat (limited to 'webui/types/remark-react')
-rw-r--r--webui/types/remark-react/index.d.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/webui/types/remark-react/index.d.ts b/webui/types/remark-react/index.d.ts
new file mode 100644
index 00000000..aa5e6bcb
--- /dev/null
+++ b/webui/types/remark-react/index.d.ts
@@ -0,0 +1,6 @@
+declare module "remark-react" {
+ import { Plugin } from 'unified';
+
+ const plugin: Plugin;
+ export default plugin;
+};