/** * Language Detection Patterns and Keywords * @module analysis/language-detector.patterns */ import type { SupportedLanguage } from './types.js'; import type { ContentPattern, ShebangPattern } from './language-detector.types.js'; /** * Shebang patterns for language detection * Note: Order matters - more specific patterns should come first */ export declare const SHEBANG_PATTERNS: ShebangPattern[]; export declare const CONTENT_PATTERNS: ContentPattern[]; /** * Keyword frequency analysis for statistical detection */ export declare const LANGUAGE_KEYWORDS: Record; //# sourceMappingURL=language-detector.patterns.d.ts.map