11 lines
161 B
TypeScript
11 lines
161 B
TypeScript
export const TemplateCreateSchema = {
|
|
name: String,
|
|
$description: String,
|
|
|
|
};
|
|
|
|
export interface TemplateCreateSchema {
|
|
name: string,
|
|
description?: string,
|
|
}
|