UNPKG

@datalayer/core

Version:
15 lines (14 loc) 335 B
import { IUser } from "./User"; import { IContact } from "./Contact"; export declare const asInvite: (i: any) => IInvite; export type IInvite = { id: string; token?: string; from?: IUser; to: Partial<IContact>; sentDate: Date; joinDate?: Date; message: string; brand: string; }; export default IInvite;