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