summary refs log tree commit diff
path: root/src/schema/Template.ts
blob: 64ca2165e9c869e770fd253aa3dceb5031374e3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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,
}