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