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