vision-embedded-web
Version:
Cubic Vision methods for embedded web content.
10 lines (9 loc) • 412 B
TypeScript
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>;