UNPKG

recrawl

Version:

[![npm](https://img.shields.io/npm/v/recrawl.svg)](https://www.npmjs.com/package/recrawl) [![ci](https://github.com/aleclarson/recrawl/actions/workflows/release.yml/badge.svg)](https://github.com/aleclarson/recrawl/actions/workflows/release.yml) [![codeco

10 lines (9 loc) 311 B
/// <reference types="node" /> import * as fs from 'fs'; export interface FileAdapter { readdir(name: string): Promise<string[]>; readlink(name: string): Promise<string>; lstat(name: string): Promise<fs.Stats>; stat(name: string): Promise<fs.Stats>; } export declare const localFs: FileAdapter;