Permalink
Cannot retrieve contributors at this time
15 lines (15 sloc)
477 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.walk/out/readers/sync.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
import * as fsScandir from '@nodelib/fs.scandir'; | |
import type { Entry } from '../types'; | |
import Reader from './reader'; | |
export default class SyncReader extends Reader { | |
protected readonly _scandir: typeof fsScandir.scandirSync; | |
private readonly _storage; | |
private readonly _queue; | |
read(): Entry[]; | |
private _pushToQueue; | |
private _handleQueue; | |
private _handleDirectory; | |
private _handleError; | |
private _handleEntry; | |
private _pushToStorage; | |
} |