@dryui/mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ export interface DiagnoseIssue {
2
+ readonly severity: 'error' | 'warning' | 'info';
3
+ readonly code: string;
4
+ readonly variable: string;
5
+ readonly value?: string;
6
+ readonly message: string;
7
+ readonly fix: string | null;
8
+ }
9
+ export interface DiagnoseResult {
10
+ readonly variables: {
11
+ readonly found: number;
12
+ readonly required: number;
13
+ readonly extra: number;
14
+ };
15
+ readonly issues: DiagnoseIssue[];
16
+ readonly summary: string;
17
+ }
18
+ export declare function diagnoseTheme(css: string, spec: {
19
+ components: Record<string, {
20
+ cssVars: Record<string, string>;
21
+ }>;
22
+ }): DiagnoseResult;