7 lines
226 B
TypeScript
7 lines
226 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
import type { ApiAccountJSON } from 'mastodon/api_types/accounts';
|
|
|
|
export const importAccounts = createAction<{ accounts: ApiAccountJSON[] }>(
|
|
'accounts/importAccounts',
|
|
);
|