Skip to content
HomePagesHomePages template kit

DefineTemplateCommon

What every `defineTemplate` branch shares: identity, scope, rules, intake chrome.

What every defineTemplate branch shares: identity, scope, rules, intake chrome.

Import from @homepages/template-kit.

export interface DefineTemplateCommon {
readonly key: string;
readonly name: string;
readonly scope: TemplateScope;
readonly reconcile?: readonly ReconcileRule[];
readonly preview?: unknown;
}