13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
export enum InviteStatusEnum {
|
|
PENDING = "pending",
|
|
ACCEPTED = "accepted",
|
|
DECLINED = "declined",
|
|
NOT_FOUND = "not_found",
|
|
FAILED = "failed",
|
|
}
|
|
|
|
export type InviteStatus = {
|
|
message: string
|
|
status: InviteStatusEnum
|
|
}
|
|
|