mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-04 05:53:07 -05:00
8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
|
import { createAction } from '@reduxjs/toolkit';
|
||
|
|
||
|
import type { Poll } from 'mastodon/models/poll';
|
||
|
|
||
|
export const importPolls = createAction<{ polls: Poll[] }>(
|
||
|
'poll/importMultiple',
|
||
|
);
|