8 lines
196 B
TypeScript
Raw Normal View History

import { createAction } from '@reduxjs/toolkit';
import type { Poll } from 'flavours/glitch/models/poll';
export const importPolls = createAction<{ polls: Poll[] }>(
'poll/importMultiple',
);