mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-03 21:43:40 -05:00
37070a7881
Port ded799f91302c1ea2ac0b463ef50e309e154466c to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
import type { Poll } from 'flavours/glitch/models/poll';
|
|
|
|
export const importPolls = createAction<{ polls: Poll[] }>(
|
|
'poll/importMultiple',
|
|
);
|