Skip to content
HomePagesHomePages template kit

FieldBinding

One field of one row of a record list — the fourth dimension of slot identity.

One field of one row of a record list — the fourth dimension of slot identity.

slot + item + field is the full address; because a record cannot nest inside a record, no fifth dimension can exist and the tuple stays fixed.

Import from @homepages/template-kit.

export type FieldBinding<D> = {
readonly slot: string;
readonly item: number;
readonly field: string;
readonly def: D;
readonly value: SlotValue<D>;
readonly present: boolean;
};