Files

4 lines
156 B
TypeScript
Raw Permalink Normal View History

2024-04-18 21:12:37 +02:00
import type { Options, Result } from './types.js';
declare const readdir: (rootPath: string, options?: Options) => Promise<Result>;
export default readdir;