/** * 검사 결과 */ export interface CheckResult { name: string; passed: boolean; message: string; details?: string[]; } /** * 검사 인터페이스 */ export interface Check { name: string; description: string; run(workspaceRoot: string, options?: CheckOptions): CheckResult; } /** * 검사 옵션 */ export interface CheckOptions { filePath?: string; content?: string; verbose?: boolean; } //# sourceMappingURL=types.d.ts.map