Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
506 bytes
|
Line | |
---|
1 | import * as fsStat from '@nodelib/fs.stat';
|
---|
2 | import * as fsWalk from '@nodelib/fs.walk';
|
---|
3 | import { Entry, Pattern, ReaderOptions } from '../types';
|
---|
4 | import Reader from './reader';
|
---|
5 | export default class ReaderSync extends Reader<Entry[]> {
|
---|
6 | protected _walkSync: typeof fsWalk.walkSync;
|
---|
7 | protected _statSync: typeof fsStat.statSync;
|
---|
8 | dynamic(root: string, options: ReaderOptions): Entry[];
|
---|
9 | static(patterns: Pattern[], options: ReaderOptions): Entry[];
|
---|
10 | private _getEntry;
|
---|
11 | private _getStat;
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.