import { IConstruct } from './construct'; /** * Represents an Aspect. */ export interface IAspect { /** * All aspects can visit an IConstruct. */ visit(node: IConstruct): void; }