@alisdigital/types-library
Version:
TypeScript type definitions for Papilet ecosystem with session soft delete and event management features
12 lines (11 loc) • 343 B
TypeScript
export type INotificationType = "rent" | "contract" | "payment" | "transfer" | "spam" | "building" | "expenditures";
export interface INotificationsRequest {
type: INotificationType;
}
export interface IAnnouncementUpsertRequest {
title: string;
description: string;
type: string;
startDate: string;
endDate: string;
}