mirror of https://github.com/vladmandic/human
9 lines
281 B
TypeScript
9 lines
281 B
TypeScript
/**
|
|
* Gesture detection module
|
|
*/
|
|
import { Gesture } from '../result';
|
|
export declare const body: (res: any) => Gesture[];
|
|
export declare const face: (res: any) => Gesture[];
|
|
export declare const iris: (res: any) => Gesture[];
|
|
export declare const hand: (res: any) => Gesture[];
|