Files
standardnotes-app-web/packages/models/src/Domain/Syncable/Note/NoteContent.ts
2022-07-05 20:58:23 +02:00

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