11 lines
220 B
TypeScript
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
|
|
}
|