source: trip-planner-front/node_modules/@nodelib/fs.stat/out/index.d.ts@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 805 bytes
Line 
1import type { FileSystemAdapter, StatAsynchronousMethod, StatSynchronousMethod } from './adapters/fs';
2import * as async from './providers/async';
3import Settings, { Options } from './settings';
4import type { Stats } from './types';
5declare type AsyncCallback = async.AsyncCallback;
6declare function stat(path: string, callback: AsyncCallback): void;
7declare function stat(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void;
8declare namespace stat {
9 function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise<Stats>;
10}
11declare function statSync(path: string, optionsOrSettings?: Options | Settings): Stats;
12export { Settings, stat, statSync, AsyncCallback, FileSystemAdapter, StatAsynchronousMethod, StatSynchronousMethod, Options, Stats };
Note: See TracBrowser for help on using the repository browser.