game-analysis-types
Version:
Common TypeScript types and utilities for game analysis tools.
21 lines • 745 B
TypeScript
import type { Roster } from './types/roster.js';
/**
* Service for handling game terminology transformations
* to ensure intellectual property protection
*/
export declare class TerminologyService {
/**
* Transform a roster for use in AI analysis while protecting IP
* @param roster - The original roster
* @returns The transformed roster
*/
transformRosterForAnalysis(roster: Roster): any;
/**
* Transform AI analysis to use game-specific terminology
* @param analysis - The generic analysis
* @param roster - The original roster
* @returns The transformed analysis
*/
transformAnalysisFromAI(analysis: any, roster: Roster): any;
}
//# sourceMappingURL=TerminologyService.d.ts.map