Interface BottomConfigurationChain<Specifics>

interface BottomConfigurationChain<Specifics extends TypirSpecifics> {
    finish(): BottomType;
    inferenceRule<T extends TypirSpecifics>(
        rule: InferCurrentTypeRule<BottomType, Specifics, T>,
    ): BottomConfigurationChain<Specifics>;
}

Type Parameters

Methods