6 lines
149 B
TypeScript
6 lines
149 B
TypeScript
import { ApplicationEvent } from '@standardnotes/snjs'
|
|
|
|
export interface EventObserverInterface {
|
|
handle(event: ApplicationEvent): Promise<void>
|
|
}
|