Continued creating the entity system
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
import {User} from "./user";
|
||||
|
||||
export interface Invite {
|
||||
id: string;
|
||||
from: string;
|
||||
to: string;
|
||||
id: string;
|
||||
from: string;
|
||||
to: string;
|
||||
}
|
||||
|
||||
export interface InviteWithUsers extends Omit<Invite, "from"> {
|
||||
from?: User;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user