2024-11-16 23:03:55 +08:00
|
|
|
export interface TemplateContract {
|
2024-11-22 13:13:04 +08:00
|
|
|
name: string;
|
|
|
|
description?: string;
|
|
|
|
config: {
|
|
|
|
layout?: string;
|
|
|
|
styles?: string[];
|
|
|
|
scripts?: string[];
|
|
|
|
};
|
|
|
|
loader: () => Promise<void>;
|
|
|
|
element: () => React.ReactNode;
|
|
|
|
}
|