Files
standardnotes-app-web/packages/web/src/javascripts/Components/NotesOptions/EditorMenuItem.tsx

11 lines
220 B
TypeScript

import { NoteType, SNComponent } from '@standardnotes/snjs'
export type EditorMenuItem = {
name: string
component?: SNComponent
isEntitled: boolean
noteType: NoteType
isLabs?: boolean
description?: string
}