human/types/image/image.d.ts

6 lines
179 B
TypeScript

import { Tensor } from '../tfjs/types';
export declare function process(input: any, config: any): {
tensor: Tensor | null;
canvas: OffscreenCanvas | HTMLCanvasElement;
};