14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
import { ItemContent } from '../../Abstract/Content/ItemContent'
|
|
|
|
export interface NoteContentSpecialized {
|
|
title: string
|
|
text: string
|
|
mobilePrefersPlainEditor?: boolean
|
|
hidePreview?: boolean
|
|
preview_plain?: string
|
|
preview_html?: string
|
|
spellcheck?: boolean
|
|
}
|
|
|
|
export type NoteContent = NoteContentSpecialized & ItemContent
|