mirror of
https://github.com/spacebarchat/server.git
synced 2026-09-17 03:45:11 +00:00
20 lines
321 B
TypeScript
20 lines
321 B
TypeScript
export const TemplateCreateSchema = {
|
|
name: String,
|
|
$description: String,
|
|
};
|
|
|
|
export interface TemplateCreateSchema {
|
|
name: string;
|
|
description?: string;
|
|
}
|
|
|
|
export const TemplateModifySchema = {
|
|
name: String,
|
|
$description: String,
|
|
};
|
|
|
|
export interface TemplateModifySchema {
|
|
name: string;
|
|
description?: string;
|
|
}
|