UNPKG

ai-text-detector

Version:

A lightweight, fast JavaScript/TypeScript library for detecting AI-generated text using advanced linguistic analysis. Works in Node.js, React, and browser environments with zero dependencies.

9 lines (8 loc) 455 B
/** * Human-likeness and emotional analysis metrics */ export declare function calculateHumanLikenessIndicators(text: string): number; export declare function calculateEmotionalToneVariability(text: string): number; export declare function calculateInformalnessScore(text: string): number; export declare function calculateDiscourseMarkerPatterns(words: string[]): number; export declare function calculateFunctionWordAnalysis(words: string[]): number;