Skip to content

Commit

Permalink
Improve custom fields typing
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed May 14, 2024
1 parent efa647e commit acda8ff
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/definition/rooms/IRoom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ export interface IRoom {
updatedAt?: Date;
lastModifiedAt?: Date;
description?: string;
/** @deprecated */
customFields?: { [key: string]: any };
custom?: ICustomFields;
parentRoom?: IRoom;
livechatData?: { [key: string]: any };
}

// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface ICustomFields {}

0 comments on commit acda8ff

Please sign in to comment.