UNPKG

@modern-js/utils

Version:

A Progressive React Framework for modern web development.

8 lines (7 loc) 295 B
/** * Find first already exists file. * @param files - Absolute file paths with extension. * @returns The file path if exists, or false if no file exists. */ export declare const findExists: (files: string[]) => string | false; export declare const emptyDir: (dir: string) => Promise<void>;