Files
mastodon/app/javascript/flavours/glitch/actions/importer/accounts.ts
2025-05-03 18:19:31 +02:00

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',
);