diff options
Diffstat (limited to 'src/common/text/parse')
| -rw-r--r-- | src/common/text/parse/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/text/parse/index.ts b/src/common/text/parse/index.ts index 1e2398dc38..b958da81b0 100644 --- a/src/common/text/parse/index.ts +++ b/src/common/text/parse/index.ts @@ -14,7 +14,7 @@ const elements = [ require('./elements/emoji') ]; -export default (source: string) => { +export default (source: string): any[] => { if (source == '') { return null; |