mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-26 04:16:44 +00:00
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
import type { ApiAccountJSON } from 'flavours/glitch/api_types/accounts';
|
|
|
|
export const importAccounts = createAction<{ accounts: ApiAccountJSON[] }>(
|
|
'accounts/importAccounts',
|
|
);
|