mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-25 14:02:08 +00:00
🎨 formatting files
This commit is contained in:
@@ -22,21 +22,13 @@ export const ChannelModifySchema = {
|
||||
};
|
||||
|
||||
export const DmChannelCreateSchema = {
|
||||
owner_id: String,
|
||||
$id: String,
|
||||
$created_at: Date,
|
||||
name: String,
|
||||
type: Number,
|
||||
recipients: [String]
|
||||
}
|
||||
$name: String,
|
||||
recipients: [String],
|
||||
};
|
||||
|
||||
export interface DmChannelCreateSchema {
|
||||
owner_id: String;
|
||||
id?: String;
|
||||
created_at?: Date;
|
||||
name: String;
|
||||
type: Number;
|
||||
recipients: String[];
|
||||
name?: string;
|
||||
recipients: string[];
|
||||
}
|
||||
|
||||
export interface ChannelModifySchema {
|
||||
|
||||
Reference in New Issue
Block a user