Strongly typed type for the tie function passed by letrec to the builder function we pass to it. You may want also want to use its loosely typed version LetrecLooselyTypedTie.

Remarks

Since 3.0.0

interface LetrecTypedTie<T> {
    <K>(key): Arbitrary<T[K]>;
    (key): Arbitrary<unknown>;
}

Type Parameters

  • T