human/types/gesture/gesture.d.ts

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[];