mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-21 15:25:09 +01:00
8 lines
281 B
TypeScript
8 lines
281 B
TypeScript
|
import { get } from '@client/scripts/idb-proxy';
|
||
|
|
||
|
export async function getAccountFromId(id: string) {
|
||
|
const accounts = await get('accounts') as { token: string; id: string; }[];
|
||
|
if (!accounts) console.log('Accounts are not recorded');
|
||
|
return accounts.find(e => e.id === id);
|
||
|
}
|