event-app-api
Version:
Package for easy access to Event App API
29 lines (28 loc) • 589 B
TypeScript
export type InviteType = "cm" | "fm";
export type RegisterManagerInput = {
first_name: string;
last_name: string;
email: string;
password: string;
password_confirmation: string;
expire: string;
type: InviteType;
access: string;
};
export type Pagination = {
total: number;
count: number;
per_page: number;
current_page: number;
total_pages: number;
links: {
previous?: string;
next?: string;
};
};
export type ResponseAccountEventsType = {
data: Event[];
meta: {
pagination: Pagination;
};
};