Fully Update KeywordNotify

This commit is contained in:
thororen1234 2024-09-12 16:39:09 -04:00
parent 0e720a0f75
commit 3d5d1825f0
3 changed files with 28 additions and 21 deletions

View file

@ -27,7 +27,9 @@ export { FluxEvents };
export interface FluxDispatcher {
_actionHandlers: any;
_interceptors: any;
_subscriptions: any;
addInterceptor(interceptor: any): void;
dispatch(event: { [key: string]: unknown; type: FluxEvents; }): Promise<void>;
isDispatching(): boolean;
subscribe(event: FluxEvents, callback: (data: any) => void): void;