@halibegic/react-video-player 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/app.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare function App(): import("react/jsx-runtime").JSX.Element;
2
+ export default App;
@@ -0,0 +1,4 @@
1
+ import { HTMLAttributes } from 'react';
2
+ type PlayerButtonProps = HTMLAttributes<HTMLButtonElement>;
3
+ declare function PlayerButton({ ...props }: PlayerButtonProps): import("react/jsx-runtime").JSX.Element;
4
+ export { PlayerButton };
@@ -1,3 +1,2 @@
1
- import { ButtonProps } from '../../ui/button';
2
- declare const PlayerFullscreen: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element;
1
+ declare const PlayerFullscreen: () => import("react/jsx-runtime").JSX.Element;
3
2
  export { PlayerFullscreen };
@@ -1,4 +1,4 @@
1
1
  import { HTMLAttributes } from 'react';
2
2
  type PlayerLoadingProps = HTMLAttributes<HTMLDivElement>;
3
- declare function PlayerLoading({ className, ...props }: PlayerLoadingProps): import("react/jsx-runtime").JSX.Element | null;
3
+ declare function PlayerLoading({ style, ...props }: PlayerLoadingProps): import("react/jsx-runtime").JSX.Element | null;
4
4
  export { PlayerLoading };
@@ -0,0 +1,6 @@
1
+ type PlayerSliderProps = {
2
+ step: number;
3
+ value: number;
4
+ };
5
+ declare function PlayerSlider(props: PlayerSliderProps): null;
6
+ export { PlayerSlider };
@@ -0,0 +1,2 @@
1
+ declare function VodPlayerProgress(): import("react/jsx-runtime").JSX.Element;
2
+ export { VodPlayerProgress };