import { CalendarRound } from "../cr/calendar-round"; import { IPart } from "../i-part"; import { CommentWrapper } from "../comment-wrapper"; export default class CalendarRoundWildcard extends CommentWrapper implements IPart { private readonly cr; constructor(cr: CalendarRound); run(): CalendarRound[]; equal(other: IPart): boolean; }