index.type.ts 143 B

12345678910
  1. export type IProps = {
  2. url: string;
  3. }
  4. export type IVideoOptions = {
  5. currentTime: number;
  6. allTime: number;
  7. width: string
  8. height: string
  9. }