Permalink
Cannot retrieve contributors at this time
7 lines (7 sloc)
524 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference types="node" /> | |
import type Settings from '../settings'; | |
import type { Entry } from '../types'; | |
export declare type AsyncCallback = (error: NodeJS.ErrnoException, entries: Entry[]) => void; | |
export declare function read(directory: string, settings: Settings, callback: AsyncCallback): void; | |
export declare function readdirWithFileTypes(directory: string, settings: Settings, callback: AsyncCallback): void; | |
export declare function readdir(directory: string, settings: Settings, callback: AsyncCallback): void; |