Upload sarif for eslint results
This commit is contained in:
parent
d8b1697e9a
commit
55c72b9aa6
68 changed files with 18214 additions and 1 deletions
13
node_modules/jschardet/index.d.ts
generated
vendored
Normal file
13
node_modules/jschardet/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
export interface IDetectedMap {
|
||||
encoding: string,
|
||||
confidence: number
|
||||
}
|
||||
export interface IOptionsMap {
|
||||
minimumThreshold?: number,
|
||||
detectEncodings?: Array<string>
|
||||
}
|
||||
export function detect(buffer: Buffer | string, options?: IOptionsMap): IDetectedMap;
|
||||
|
||||
export function detectAll(buffer: Buffer | string, options?: IOptionsMap): IDetectedMap[];
|
||||
|
||||
export function enableDebug(): void;
|
||||
Loading…
Add table
Add a link
Reference in a new issue