Skip to content
HomePagesHomePages template kit

TextSlotDef

The serialized shape `text.short`/`.medium`/`.long` emit — a `text`-kind `SlotDef`.

The serialized shape text.short/.medium/.long emit — a text-kind SlotDef.

Import from @homepages/template-kit.

export interface TextSlotDef<Size extends "short" | "medium" | "long"> extends Head {
type: "text";
size: Size;
cap?: number;
}