Permalink
Cannot retrieve contributors at this time
14 lines (14 sloc)
566 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/fast-glob/out/readers/stream.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 { Readable } from 'stream'; | |
import * as fsStat from '@nodelib/fs.stat'; | |
import * as fsWalk from '@nodelib/fs.walk'; | |
import { Pattern, ReaderOptions } from '../types'; | |
import Reader from './reader'; | |
export default class ReaderStream extends Reader<Readable> { | |
protected _walkStream: typeof fsWalk.walkStream; | |
protected _stat: typeof fsStat.stat; | |
dynamic(root: string, options: ReaderOptions): Readable; | |
static(patterns: Pattern[], options: ReaderOptions): Readable; | |
private _getEntry; | |
private _getStat; | |
} |