Show toast when reacting/replying to a Story

This commit is contained in:
Josh Perez
2022-07-12 12:41:41 -04:00
committed by GitHub
parent fc98d54326
commit 9ce4b8977d
14 changed files with 228 additions and 9 deletions

View File

@@ -21,6 +21,7 @@ import type { actions as search } from './ducks/search';
import type { actions as stickers } from './ducks/stickers';
import type { actions as stories } from './ducks/stories';
import type { actions as storyDistributionLists } from './ducks/storyDistributionLists';
import type { actions as toast } from './ducks/toast';
import type { actions as updates } from './ducks/updates';
import type { actions as user } from './ducks/user';
@@ -45,6 +46,7 @@ export type ReduxActions = {
stickers: typeof stickers;
stories: typeof stories;
storyDistributionLists: typeof storyDistributionLists;
toast: typeof toast;
updates: typeof updates;
user: typeof user;
};