Upload sarif for eslint results

This commit is contained in:
Andrew Eisenberg 2024-09-09 13:15:25 -07:00
parent d8b1697e9a
commit 55c72b9aa6
No known key found for this signature in database
68 changed files with 18214 additions and 1 deletions

13
node_modules/jschardet/index.d.ts generated vendored Normal file
View 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;