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.
2021-05-04 11:37:00 +02:00

14 lines
222 B
TypeScript

export const MemberCreateSchema = {
id: String,
nick: String,
guild_id: String,
joined_at: Date,
};
export interface MemberCreateSchema {
id: string;
nick: string;
guild_id: string;
joined_at: Date;
}