@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
23 lines (22 loc) • 444 B
TypeScript
export interface Rule {
id: string;
projectId: string;
spaceId: string;
title: string;
description: string | null;
order: number;
lastApprovedBy: string | null;
createdAt: Date;
updatedAt: Date;
}
export interface FetchManyRulesResponse {
data: Rule[];
count: number;
}
export interface DeleteRuleResponse {
message: string;
deletedRule: {
id: string;
title: string;
};
}