echoes/frontend/contracts/templateContract.ts
lsy 5ca72e42cf 前端:创建api,主题,路由服务,重新定义主题插件的约束,错误,加载组件
后端:去除文章和模板的自义定路径,创建获取系统令牌api
2024-11-18 01:09:28 +08:00

17 lines
371 B
TypeScript

export interface TemplateContract {
// 模板名称
name: string;
// 模板描述
description?: string;
// 模板配置
config: {
// 模板布局
layout?: string;
// 模板样式
styles?: string[];
// 模板脚本
scripts?: string[];
};
// 渲染函数
render: (props: any) => React.ReactNode;
}