UNPKG

@storm-software/config-tools

Version:

A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.

7 lines (5 loc) 232 B
/** * Gets the nearest "node_modules" folder by walking up from start path. */ declare function findFolderUp(startPath: string, endFileNames?: string[], endDirectoryNames?: string[]): string | undefined; export { findFolderUp };