This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Intevel ツ 86aa67a258 Updated fosscord-server-util
New version of fosscord server util added
2021-05-05 21:27:14 +02:00

19 lines
374 B
TypeScript

export const TemplateCreateSchema = {
code: String,
name: String,
$description: String,
$usage_count: Number,
};
export interface InviteCreateSchema {
target_user_id?: String;
target_type?: String;
validate?: String; //? wtf is this
max_age?: Number;
max_uses?: Number;
temporary?: Boolean;
unique?: Boolean;
target_user?: String;
target_user_type?: Number;
}