UNPKG

@smooai/utils

Version:

A collection of shared utilities and tools used across SmooAI projects. This package provides common functionality to standardize and simplify development across all SmooAI repositories.

9 lines (7 loc) 233 B
declare const findFile: (filename: string, options?: { logError: boolean; }) => Promise<string>; declare const findFileSync: (filename: string, options?: { logError: boolean; }) => string; export { findFile, findFileSync };