@samiyev/guardian
Version:
Research-backed code quality guardian for AI-assisted development. Detects hardcodes, secrets, circular deps, framework leaks, entity exposure, and 9 architecture violations. Enforces Clean Architecture/DDD principles. Works with GitHub Copilot, Cursor, W
18 lines • 455 B
TypeScript
/**
* Base interface for all domain events
*/
export interface IDomainEvent {
readonly eventId: string;
readonly occurredOn: Date;
readonly eventType: string;
}
/**
* Base class for domain events
*/
export declare abstract class DomainEvent implements IDomainEvent {
readonly eventId: string;
readonly occurredOn: Date;
readonly eventType: string;
constructor(eventType: string);
}
//# sourceMappingURL=DomainEvent.d.ts.map