playable
Version:
Video player based on HTML5Video
14 lines (13 loc) • 302 B
TypeScript
declare function getInteractionType(): {
pointer: boolean;
key: boolean;
};
declare function disengage(): void;
declare function engage(): {
get: typeof getInteractionType;
};
declare const _default: {
engage: typeof engage;
disengage: typeof disengage;
};
export default _default;