@vladmandic/face-api
Version:
JavaScript module for Face Detection and Face Recognition Using Tensorflow/JS
15 lines (14 loc) • 545 B
TypeScript
/// <reference types="node" />
export declare type FileSystem = {
readFile: (filePath: string) => Promise<Buffer>;
};
export declare type Environment = FileSystem & {
Canvas: typeof HTMLCanvasElement;
CanvasRenderingContext2D: typeof CanvasRenderingContext2D;
Image: typeof HTMLImageElement;
ImageData: typeof ImageData;
Video: typeof HTMLVideoElement;
createCanvasElement: () => HTMLCanvasElement;
createImageElement: () => HTMLImageElement;
fetch: (url: string, init?: RequestInit) => Promise<Response>;
};