Port 79013c730d8c241d54823a1b5860f403de2b9a1c to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
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',
|
|
);
|