This repository has been archived on 2022-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
version.tribalwarshelp.com/src/features/ServerPage/features/PlayerPage/features/TribeChangesPage/components/TribeChanges/types.ts

18 lines
285 B
TypeScript

import { List } from 'libs/graphql/types';
export type TribeChange = {
oldTribe?: {
id: number;
tag: string;
};
newTribe?: {
id: number;
tag: string;
};
createdAt: Date | string;
};
export type TribeChangesQuery = {
tribeChanges?: List<TribeChange[]>;
};