UNPKG

@handtracking.io/yoha

Version:

Yoha is currently available for the web via JavaScript. More languages will be added in the future. If you want to port Yoha to another language and need help feel free reach out.

13 lines (12 loc) 388 B
/** * @public * Requests a 'post' animation frame. * @returns Promise that resolves right after frame has been rendered. */ export declare function RequestPostAnimationFrame(): Promise<void>; /** * @public * Requests an animation frame. * @returns Promise that resolves right before next frame is to be rendered. */ export declare function RequestAnimationFrame(): Promise<void>;