|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
473 bytes
|
| Line | |
|---|
| 1 | import * as fsWalk from '@nodelib/fs.walk';
|
|---|
| 2 | import { Entry, ReaderOptions, Pattern } from '../types';
|
|---|
| 3 | import Reader from './reader';
|
|---|
| 4 | import ReaderStream from './stream';
|
|---|
| 5 | export default class ReaderAsync extends Reader<Promise<Entry[]>> {
|
|---|
| 6 | protected _walkAsync: typeof fsWalk.walk;
|
|---|
| 7 | protected _readerStream: ReaderStream;
|
|---|
| 8 | dynamic(root: string, options: ReaderOptions): Promise<Entry[]>;
|
|---|
| 9 | static(patterns: Pattern[], options: ReaderOptions): Promise<Entry[]>;
|
|---|
| 10 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.