Files
roleplay-contract/gui/rpk-gui/src/interfaces/index.tsx

17 lines
207 B
TypeScript

export type IFirm = {
instance: string,
firm: string
entity?: any
}
type User = {
id: number,
email: string,
firms: [IFirm],
};
export type IAuthUser = User;
export type IUser = User | null;