Files
standardnotes-app-web/app/assets/javascripts/Components/NotesOptions/NotesOptionsProps.ts
2022-05-30 12:42:52 +05:30

9 lines
261 B
TypeScript

import { WebApplication } from '@/UIModels/Application'
import { AppState } from '@/UIModels/AppState'
export type NotesOptionsProps = {
application: WebApplication
appState: AppState
closeOnBlur: (event: { relatedTarget: EventTarget | null }) => void
}