@diullei/codeguardian
Version:
Open-source developer tool to validate and enforce architectural rules, especially for AI-generated code
18 lines • 923 B
TypeScript
import { RuleBuilder, RuleFactory } from '../../types';
import { AssertMatchRule, AssertCountRule, AssertPropertyRule, AssertCommandOutputRule, AssertLineCountRule } 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;
}
export declare class AssertLineCountBuilder implements RuleBuilder {
build(config: any, _factory: RuleFactory): AssertLineCountRule;
}
//# sourceMappingURL=AssertionBuilders.d.ts.map