UNPKG

vision-embedded-web

Version:
10 lines (9 loc) 412 B
import { FsSearchTypes } from './types/cubic-player'; export declare function findFileLine({ filePath, fromEnd, search, type, }: { filePath: string; type?: FsSearchTypes; search: string; fromEnd?: boolean; }): Promise<string | null>; export declare function readDirectory(dirPath: string): Promise<string[]>; export declare function joinPathes(pathes: string[]): Promise<string | null>;