Add missing semicolons

This commit is contained in:
syuilo
2018-11-03 22:38:12 +09:00
parent 600aea4dbb
commit 30f0b1c30d
13 changed files with 45 additions and 45 deletions

View File

@@ -3,11 +3,11 @@
*/
export type TextElementLink = {
type: 'link'
content: string
title: string
url: string
silent: boolean
type: 'link';
content: string;
title: string;
url: string;
silent: boolean;
};
export default function(text: string) {