DefinitelyTyped/types/chardet/index.d.ts
Sam Hinshaw 500811ec0e Update types for chardet v0.8 (#39953)
* Update types for chardet v0.8

* Fix extraneous spaces
2019-10-30 10:05:39 -07:00

35 lines
1.3 KiB
TypeScript

// Type definitions for chardet 0.8
// Project: https://github.com/runk/node-chardet
// Definitions by: Hauke Oldsen <https://github.com/Gebatzens>
// Sam Hinshaw <https://github.com/samhinshaw>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
export interface Confidence {
name: string;
confidence: number;
lang?: string;
}
export interface Options {
returnAllMatches?: boolean;
sampleSize?: number;
}
// As of v0.6, these fns return the highest-confidence result
export function detect(buf: Buffer, opts?: Options): string | null;
export function detectFile(path: string, cb: (err: any, result: string | null) => void): void;
export function detectFile(path: string, opts: Options, cb: (err: any, result: string | null) => void): void;
export function detectFileSync(path: string, opts?: Options): string | null;
// These fns were introduced in v0.6 to return an array of confidences.
export function detectAll(buf: Buffer, opts?: Options): Confidence[] | null;
export function detectFileAll(path: string, cb: (err: any, result: Confidence[] | null) => void): void;
export function detectFileAll(path: string, opts: Options, cb: (err: any, result: Confidence[] | null) => void): void;
export function detectFileAllSync(path: string, opts?: Options): Confidence[] | null;