|
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:
855 bytes
|
| Line | |
|---|
| 1 | import type { FileSystemAdapter, ReaddirAsynchronousMethod, ReaddirSynchronousMethod } from './adapters/fs';
|
|---|
| 2 | import * as async from './providers/async';
|
|---|
| 3 | import Settings, { Options } from './settings';
|
|---|
| 4 | import type { Dirent, Entry } from './types';
|
|---|
| 5 | declare type AsyncCallback = async.AsyncCallback;
|
|---|
| 6 | declare function scandir(path: string, callback: AsyncCallback): void;
|
|---|
| 7 | declare function scandir(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void;
|
|---|
| 8 | declare namespace scandir {
|
|---|
| 9 | function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise<Entry[]>;
|
|---|
| 10 | }
|
|---|
| 11 | declare function scandirSync(path: string, optionsOrSettings?: Options | Settings): Entry[];
|
|---|
| 12 | export { scandir, scandirSync, Settings, AsyncCallback, Dirent, Entry, FileSystemAdapter, ReaddirAsynchronousMethod, ReaddirSynchronousMethod, Options };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.