Skip to content
HomePagesHomePages template kit

ComputeBinding

The authoring marker `compute()` produces — read back by `getComputed`.

The authoring marker compute() produces — read back by getComputed.

Import from @homepages/template-kit.

export interface ComputeBinding<T> {
readonly kind: "compute";
readonly fn: (f: Facts) => T;
}