This commit is contained in:
syuilo 2018-06-18 14:28:43 +09:00
parent 80e5645a84
commit e66d7babc5
56 changed files with 115 additions and 112 deletions

View file

@ -3,7 +3,7 @@
*/
export type TextElementBold = {
type: "bold"
type: 'bold'
content: string
bold: string
};

View file

@ -5,7 +5,7 @@
import genHtml from '../core/syntax-highlighter';
export type TextElementCode = {
type: "code"
type: 'code'
content: string
code: string
html: string

View file

@ -3,7 +3,7 @@
*/
export type TextElementEmoji = {
type: "emoji"
type: 'emoji'
content: string
emoji: string
};

View file

@ -3,7 +3,7 @@
*/
export type TextElementHashtag = {
type: "hashtag"
type: 'hashtag'
content: string
hashtag: string
};

View file

@ -5,7 +5,7 @@
import genHtml from '../core/syntax-highlighter';
export type TextElementInlineCode = {
type: "inline-code"
type: 'inline-code'
content: string
code: string
html: string

View file

@ -3,7 +3,7 @@
*/
export type TextElementLink = {
type: "link"
type: 'link'
content: string
title: string
url: string

View file

@ -4,7 +4,7 @@
import parseAcct from '../../../acct/parse';
export type TextElementMention = {
type: "mention"
type: 'mention'
content: string
username: string
host: string

View file

@ -3,7 +3,7 @@
*/
export type TextElementQuote = {
type: "quote"
type: 'quote'
content: string
quote: string
};

View file

@ -3,7 +3,7 @@
*/
export type TextElementSearch = {
type: "search"
type: 'search'
content: string
query: string
};

View file

@ -3,7 +3,7 @@
*/
export type TextElementTitle = {
type: "title"
type: 'title'
content: string
title: string
};

View file

@ -3,7 +3,7 @@
*/
export type TextElementUrl = {
type: "url"
type: 'url'
content: string
url: string
};