13 lines
209 B
TypeScript
13 lines
209 B
TypeScript
import { Entity } from "./entity";
|
|
|
|
export interface Invite {
|
|
id: string;
|
|
entity: string;
|
|
from: string
|
|
to: string;
|
|
}
|
|
|
|
export interface InviteWithEntity extends Omit<Invite, "entity"> {
|
|
entity?: Entity;
|
|
}
|