import type { PathStep } from "@/utils/path-builder"; export interface MenuItem { icon: React.ComponentType<{ className?: string; }>; name: string; type: string; color: string; canPin?: boolean; shortcut?: string; onClick?: (() => void) | React.ReactNode; show?: boolean; } export interface Comment { id?: string; resolved?: boolean; createdAt?: Date; updatedAt?: Date; hostname: string; pageUrl: string; pageTitle: string; content: string; xPercentOffset: number; yPercentOffset: number; targetPath: Array; targetX: number; targetY: number; targetSelectionRange?: string; userId: string; user?: { id: string; name: string; email: string; emailVerified: boolean; image?: string; createdAt: Date; role: "user" | "admin"; updatedAt: Date; }; } //# sourceMappingURL=const.types.d.ts.map