contact
This commit is contained in:
@@ -1,44 +0,0 @@
|
||||
import { IResponse } from "../../../../types/response.types";
|
||||
|
||||
export type CreateGroupIconType = {
|
||||
name: string;
|
||||
};
|
||||
|
||||
export type GroupIconType = {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
deletedAt: string | null;
|
||||
name: string;
|
||||
icons: unknown[];
|
||||
};
|
||||
|
||||
export interface GroupIconsResponse extends IResponse<GroupIconType[]> {
|
||||
statusCode: number;
|
||||
}
|
||||
|
||||
export type CreateIconType = {
|
||||
url: string;
|
||||
groupId: string;
|
||||
};
|
||||
|
||||
export type IconGroupType = {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
deletedAt: string | null;
|
||||
name: string;
|
||||
};
|
||||
|
||||
export type IconType = {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
deletedAt: string | null;
|
||||
url: string;
|
||||
group: IconGroupType;
|
||||
};
|
||||
|
||||
export interface IconsResponse extends IResponse<IconType[]> {
|
||||
statusCode: number;
|
||||
}
|
||||
Reference in New Issue
Block a user