react-weekly-table
Version:
React weekly scheduler <br/> By default build time ranges for a week, supports up to 31 days <br/> Can work with different timezones, data always return to UTC+0
14 lines (13 loc) • 429 B
TypeScript
import { FC } from 'react';
import { PointerLockProps } from '../common';
/**
* Pointer lock provider context hook
* @returns [PointerLockProps]{@link PointerLockProps}
*/
export declare const usePointerLock: () => PointerLockProps;
/**
* This provides used pointer-lock browser api
* It using with all timeblock moving actions
*/
declare const PointerLockProvider: FC;
export default PointerLockProvider;