summary refs log tree commit diff
path: root/src/util/schemas/DmChannelCreateSchema.ts
blob: d5afc6d7caef9a840c05492fc08fda04157376b9 (plain) (blame)
1
2
3
4
5
export interface DmChannelCreateSchema {
	name?: string;
	recipients: string[];
}