image-classifier-ts
Version:
Command line tool to auto-classify images, renaming them with appropriate labels. Uses Node and Google Vision API.
12 lines (11 loc) • 375 B
TypeScript
import { Verbosity } from "./Verbosity";
export interface IOutputter {
error(...items: any[]): void;
errorVerbose(...items: any[]): void;
info(...items: any[]): void;
infoMediumVerbose(...items: any[]): void;
infoVerbose(...items: any[]): void;
warn(...items: any[]): void;
warnVerbose(...items: any[]): void;
readonly verbosity: Verbosity;
}