@diullei/codeguardian
Version:
Open-source developer tool to validate and enforce architectural rules, especially for AI-generated code
15 lines • 763 B
TypeScript
import { RuleBuilder, RuleFactory } from '../../types';
import { AssertMatchRule, AssertCountRule, AssertPropertyRule, AssertCommandOutputRule } from '../../assertions';
export declare class AssertMatchBuilder implements RuleBuilder {
build(config: any, _factory: RuleFactory): AssertMatchRule;
}
export declare class AssertCountBuilder implements RuleBuilder {
build(config: any, _factory: RuleFactory): AssertCountRule;
}
export declare class AssertPropertyBuilder implements RuleBuilder {
build(config: any, _factory: RuleFactory): AssertPropertyRule;
}
export declare class AssertCommandOutputBuilder implements RuleBuilder {
build(config: any, _factory: RuleFactory): AssertCommandOutputRule;
}
//# sourceMappingURL=AssertionBuilders.d.ts.map