human/types/handpose/handpose.d.ts

7 lines
220 B
TypeScript
Raw Normal View History

2021-05-25 14:58:20 +02:00
/**
* HandPose module entry point
*/
2021-05-22 19:17:07 +02:00
import { Hand } from '../result';
export declare function predict(input: any, config: any): Promise<Hand[]>;
export declare function load(config: any): Promise<[unknown, unknown]>;