mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-05-03 13:16:08 +08:00
7 lines
524 B
TypeScript
7 lines
524 B
TypeScript
/// <reference types="node" />
|
|
import type Settings from '../settings';
|
|
import type { Entry } from '../types';
|
|
export declare type AsyncCallback = (error: NodeJS.ErrnoException, entries: Entry[]) => void;
|
|
export declare function read(directory: string, settings: Settings, callback: AsyncCallback): void;
|
|
export declare function readdirWithFileTypes(directory: string, settings: Settings, callback: AsyncCallback): void;
|
|
export declare function readdir(directory: string, settings: Settings, callback: AsyncCallback): void;
|