rm src/@types/cld.d.ts

This commit is contained in:
ThatOneCalculator 2023-09-19 17:16:56 -07:00
parent 414f6df104
commit 2a1f119944
No known key found for this signature in database
GPG Key ID: 8703CACD01000000

View File

@ -1,25 +0,0 @@
interface Language {
readonly name: string;
readonly code: string;
readonly percent: number;
readonly score: number;
}
interface Chunk {
readonly name: string;
readonly code: string;
readonly offset: number;
readonly bytes: number;
}
interface Options {
readonly isHTML: false;
readonly languageHint: string;
readonly encodingHint: string;
readonly tldHint: string;
readonly httpHint: string;
}
interface DetectLanguage {
readonly reliable: boolean;
readonly textBytes: number;
readonly languages: Language[];
readonly chunks: Chunk[];
}