interface ResolveDirectionToConfigConfig {
    direction: Direction;
    ruleDefaults?: Omit<RuleConfig, "toData" | "toView">;
    toData: RuleSectionConfigSupplier;
    toView: RuleSectionConfigSupplier;
}

Properties

direction: Direction
ruleDefaults?: Omit<RuleConfig, "toData" | "toView">