This repository has been archived on 2024-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/javascript/types/resources.ts

11 lines
193 B
TypeScript
Raw Normal View History

2023-05-03 07:32:11 -04:00
import type { Record } from 'immutable';
type AccountValues = {
id: number;
avatar: string;
avatar_static: string;
[key: string]: any;
};
2023-05-03 07:32:11 -04:00
export type Account = Record<AccountValues>;