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.

10 lines 313 B
//#region src/file/findFile.d.ts declare const findFile: (filename: string, options?: { logError: boolean; }) => Promise<string>; declare const findFileSync: (filename: string, options?: { logError: boolean; }) => string; //#endregion export { findFile, findFileSync }; //# sourceMappingURL=findFile.d.cts.map