UNPKG

@omlet/cli

Version:

Omlet (https://omlet.dev) is a component analytics tool that uses a CLI to scan your codebase to detect components and their usage. Get real usage insights from customizable charts to measure adoption across all projects and identify opportunities to impr

7 lines (6 loc) 389 B
/// <reference types="node" /> export declare function pathExists(p: string): Promise<boolean>; export declare function readIfExists(filePath: string): Promise<string | undefined>; export declare function listDir(path: string): Promise<import("fs").Dirent[]>; export declare function resolvePath(path: string): string; export declare function normalizeTrimPath(inputPath: string): string;