Skip to content

Commit 918a790

Browse files
committed
add type to channel
1 parent a0897fe commit 918a790

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/Channel.interface.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ export interface IChannel {
1414
parentId?: string | null;
1515
permissionOverwrites?: IOverwrite[];
1616
deletedAt?: Date | null;
17-
type: number
17+
type: number;
1818
}
1919

2020
export interface IChannelUpdateBody {
2121
name?: string | null;
2222
parentId?: string | null;
2323
permissionOverwrites?: IOverwrite[];
2424
deletedAt?: Date | null;
25-
type?: number
25+
type?: number;
2626
}
2727
export interface IChannelMethods {
2828
softDelete: () => void;

0 commit comments

Comments
 (0)