mastodon/app/javascript/types/resources.ts
2023-05-03 11:43:29 +02:00

10 lines
199 B
TypeScript

import type { MastodonMap } from './util';
type AccountValues = {
id: number;
avatar: string;
avatar_static: string;
[key: string]: any;
};
export type Account = MastodonMap<AccountValues>;