abi.js
Version:
[![typescript-icon]][typescript-link] [![license-icon]][license-link] [![status-icon]][status-link] [![ci-icon]][ci-link] [![twitter-icon]][twitter-link]
14 lines (13 loc) • 585 B
TypeScript
import * as dntShim from "../../../../../_dnt.shims.js";
/**
* Walk entry for {@linkcode walk}, {@linkcode walkSync},
* {@linkcode expandGlob} and {@linkcode expandGlobSync}.
*/
export interface WalkEntry extends dntShim.Deno.DirEntry {
/** Full path of the entry. */
path: string;
}
/** Create {@linkcode WalkEntry} for the `path` synchronously. */
export declare function createWalkEntrySync(path: string | URL): WalkEntry;
/** Create {@linkcode WalkEntry} for the `path` asynchronously. */
export declare function createWalkEntry(path: string | URL): Promise<WalkEntry>;