UNPKG

image-classifier-ts

Version:

Command line tool to auto-classify images, renaming them with appropriate labels. Uses Node and Google Vision API.

7 lines (6 loc) 224 B
import { IOutputter } from "./IOutputter"; import { Verbosity } from "./Verbosity"; export declare namespace OutputterFactory { function create(verbosity: Verbosity): IOutputter; function createNull(): IOutputter; }