Files
standardnotes-app-web/packages/web/src/javascripts/Event/EventObserverInterface.ts
2022-10-21 14:31:07 +02:00

6 lines
149 B
TypeScript

import { ApplicationEvent } from '@standardnotes/snjs'
export interface EventObserverInterface {
handle(event: ApplicationEvent): Promise<void>
}