mira-consciousness
Version:
Memory & Intelligence Retention Archive - Preserving The Spark
21 lines • 765 B
TypeScript
/**
* Environment Analyzer for Cross-Platform Compatibility
* Analyzes environment variables, dependencies, and system requirements
*/
import { CrossPlatformIssue, EnvironmentAnalysis } from './types.js';
export declare class EnvironmentAnalyzer {
private projectRoot;
constructor(projectRoot: string);
private isTestFile;
private isAnalyzerFile;
analyze(issues: CrossPlatformIssue[]): Promise<EnvironmentAnalysis>;
private analyzeNodeVersion;
private analyzeDependencies;
private analyzeEnvironmentVariables;
private analyzeSystemAPIs;
private analyzeNetworkInterfaces;
private analyzeCharacterEncoding;
private analyzeLineEndings;
private scanWithPatterns;
}
//# sourceMappingURL=EnvironmentAnalyzer.d.ts.map