mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 17:23:05 -05:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
declare module 'jschardet' {
|
|
export interface IDetectedMap {
|
|
encoding: string,
|
|
confidence: number
|
|
}
|
|
export function detect(buffer: Buffer): IDetectedMap;
|
|
|
|
export const Constants: {
|
|
MINIMUM_THRESHOLD: number,
|
|
}
|
|
} |