Add missing semicolons

This commit is contained in:
syuilo 2018-11-03 22:38:12 +09:00
parent 600aea4dbb
commit 30f0b1c30d
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
13 changed files with 45 additions and 45 deletions

View file

@ -3,9 +3,9 @@
*/
export type TextElementQuote = {
type: 'quote'
content: string
quote: string
type: 'quote';
content: string;
quote: string;
};
export default function(text: string, index: number) {