CheckResult Type — astro Architecture
Architecture documentation for the CheckResult type/interface in check.ts from the astro codebase.
Entity Profile
Dependency Diagram
graph TD 45cfe8f0_8f68_b950_f442_6d5a9969a2bf["CheckResult"] cc9095c8_1b43_06ff_72e4_ee83e980957f["check.ts"] 45cfe8f0_8f68_b950_f442_6d5a9969a2bf -->|defined in| cc9095c8_1b43_06ff_72e4_ee83e980957f style 45cfe8f0_8f68_b950_f442_6d5a9969a2bf fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/language-tools/language-server/src/check.ts lines 19–31
export interface CheckResult {
status: 'completed' | 'cancelled' | undefined;
fileChecked: number;
errors: number;
warnings: number;
hints: number;
fileResult: {
errors: kit.Diagnostic[];
fileUrl: URL;
fileContent: string;
text: string;
}[];
}
Source
Frequently Asked Questions
What is the CheckResult type?
CheckResult is a type/interface in the astro codebase, defined in packages/language-tools/language-server/src/check.ts.
Where is CheckResult defined?
CheckResult is defined in packages/language-tools/language-server/src/check.ts at line 19.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free