9 lines
261 B
TypeScript
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
|
|
}
|