chinwagsocial/app/javascript/types/resources.ts

11 lines
193 B
TypeScript
Raw Normal View History

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