VideoSceneContext.d.ts 316 B

12345678910
  1. import React from "react";
  2. export interface IVideoSceneContext {
  3. /**
  4. * 播放中,如果设置则 pluginAttrs.pausedonstart 失效
  5. * @default true
  6. */
  7. playing: boolean;
  8. }
  9. export declare const VideoSceneContext: React.Context<IVideoSceneContext>;
  10. //# sourceMappingURL=VideoSceneContext.d.ts.map