image-classifier-ts
Version:
Command line tool to auto-classify images, renaming them with appropriate labels. Uses Node and Google Vision API.
9 lines (8 loc) • 442 B
TypeScript
import { IOutputter } from "./output/IOutputter";
import { SimpleDate } from "./SimpleDate";
export declare namespace FileUtils {
function ensureDirExists(dirPath: string): void;
function ensureSubDirsExist(outDir: string, subDirPath: string): void;
function getModificationDateOfFile(filepath: string, outputter: IOutputter): SimpleDate;
function getModificationYearOfFile(filePath: string, outputter: IOutputter): string;
}