Skip to content
HomePagesHomePages template kit

RowBinding

The field bindings for one row: one per field the row's `fields` record declares.

The field bindings for one row: one per field the row’s fields record declares.

Import from @homepages/template-kit.

export type RowBinding<D> = {
readonly [F in keyof RowFieldDefs<D>]: FieldBinding<RowFieldDefs<D>[F]>;
};