Module normalization

Barrel exports for manga title normalization utilities. Provides functions for title processing, character replacement, and pattern detection.

export {
normalizeForMatching,
processTitle,
createNormalizedTitles,
collectMangaTitles,
isDifferenceOnlyArticles,
} from "./title-normalizer";
export type { NormalizedTitle } from "./title-normalizer";

// Character utilities
export { replaceSpecialChars, removePunctuation } from "./character-utils";

// Pattern detection
export {
isOneShot,
checkSeasonPattern,
checkSeasonPatterns,
} from "./pattern-detection";

// Cache warmer service
export { TitleNormalizationCacheWarmer, getCacheWarmer } from "./cache-warmer";
export type {
WorkerNormalizationAlgorithm,
CacheNormalizationKey,
} from "./cache-warmer";
export type { NormalizationCacheResult } from "@/workers";

References

normalizeForMatching → normalizeForMatching
processTitle → processTitle
createNormalizedTitles → createNormalizedTitles
collectMangaTitles → collectMangaTitles
isDifferenceOnlyArticles → isDifferenceOnlyArticles
NormalizedTitle → NormalizedTitle
replaceSpecialChars → replaceSpecialChars
removePunctuation → removePunctuation
isOneShot → isOneShot
checkSeasonPattern → checkSeasonPattern
checkSeasonPatterns → checkSeasonPatterns
TitleNormalizationCacheWarmer → TitleNormalizationCacheWarmer
getCacheWarmer → getCacheWarmer
WorkerNormalizationAlgorithm → WorkerNormalizationAlgorithm
CacheNormalizationKey → CacheNormalizationKey
NormalizationCacheResult → NormalizationCacheResult