diff options
author | eug-vs <eug-vs@keemail.me> | 2020-04-05 17:51:58 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-04-05 17:51:58 +0300 |
commit | b26b6c045419893bc375616d8f186bd41c5ccca1 (patch) | |
tree | 580b5372caa62fd6ed031ea16d29891e4245ec18 /src | |
parent | 63c51e7c3f266534624a4a115fdda21076dce562 (diff) | |
download | react-benzin-b26b6c045419893bc375616d8f186bd41c5ccca1.tar.gz |
fix: declare emojilib module
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/Markdown/InlineSyntax.tsx | 1 | ||||
-rw-r--r-- | src/react-app-env.d.ts | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Markdown/InlineSyntax.tsx b/src/lib/Markdown/InlineSyntax.tsx index 48c0374..53cdaf0 100644 --- a/src/lib/Markdown/InlineSyntax.tsx +++ b/src/lib/Markdown/InlineSyntax.tsx @@ -1,7 +1,6 @@ import React from 'react'; import { Link, makeStyles } from '@material-ui/core'; -// @ts-ignore-next-line; import { lib as emojiLib } from 'emojilib'; import { InlineParserPropTypes } from './types'; diff --git a/src/react-app-env.d.ts b/src/react-app-env.d.ts index 6431bc5..46be55a 100644 --- a/src/react-app-env.d.ts +++ b/src/react-app-env.d.ts @@ -1 +1,2 @@ /// <reference types="react-scripts" /> +declare module 'emojilib'; |