4 lines
156 B
TypeScript
4 lines
156 B
TypeScript
|
|
import type { Options, Result } from './types.js';
|
||
|
|
declare const readdir: (rootPath: string, options?: Options) => Promise<Result>;
|
||
|
|
export default readdir;
|