mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-03 21:43:40 -05:00
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',
|
||
|
);
|