mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-25 16:24:45 +00:00
11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
export const TemplateCreateSchema = {
|
|
name: String,
|
|
$description: String,
|
|
|
|
};
|
|
|
|
export interface TemplateCreateSchema {
|
|
name: string,
|
|
descriptio?: string,
|
|
}
|