initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
48
github/codeql-action-v2/node_modules/load-json-file/index.d.ts
generated
vendored
Normal file
48
github/codeql-action-v2/node_modules/load-json-file/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
// From https://github.com/sindresorhus/type-fest
|
||||
export type JsonValue = string | number | boolean | null | {[Key in string]?: JsonValue} | JsonValue[];
|
||||
|
||||
export type Reviver = (this: unknown, key: string, value: unknown) => unknown;
|
||||
export type BeforeParse = (data: string) => string;
|
||||
|
||||
export interface Options {
|
||||
/**
|
||||
Applies a function to the JSON string before parsing.
|
||||
*/
|
||||
readonly beforeParse?: BeforeParse;
|
||||
|
||||
/**
|
||||
Prescribes how the value originally produced by parsing is transformed, before being returned.
|
||||
See the [`JSON.parse` docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#Using_the_reviver_parameter) for more.
|
||||
*/
|
||||
readonly reviver?: Reviver;
|
||||
}
|
||||
|
||||
/**
|
||||
Read and parse a JSON file.
|
||||
|
||||
It also strips UTF-8 BOM.
|
||||
|
||||
@example
|
||||
```
|
||||
import {loadJsonFile} from 'load-json-file';
|
||||
|
||||
const json = await loadJsonFile('foo.json');
|
||||
//=> {foo: true}
|
||||
```
|
||||
*/
|
||||
export function loadJsonFile<ReturnValueType = JsonValue>(filePath: string, options?: Options): Promise<ReturnValueType>;
|
||||
|
||||
/**
|
||||
Read and parse a JSON file.
|
||||
|
||||
It also strips UTF-8 BOM.
|
||||
|
||||
@example
|
||||
```
|
||||
import {loadJsonFileSync} from 'load-json-file';
|
||||
|
||||
const json = loadJsonFileSync('foo.json');
|
||||
//=> {foo: true}
|
||||
```
|
||||
*/
|
||||
export function loadJsonFileSync<ReturnValueType = JsonValue>(filePath: string, options?: Options): ReturnValueType;
|
||||
Loading…
Add table
Add a link
Reference in a new issue