commentTypes.ts 368 B

123456789101112131415161718192021
  1. export const PlayState = {
  2. prepared: 1,
  3. playing: 2,
  4. pause: 3,
  5. stoped: 4,
  6. }
  7. export type VideoInfo = {
  8. id: number;
  9. title: string;
  10. coverImgPath: string;
  11. shareTitle: string;
  12. videoPath: string;
  13. recomTraceId: string;
  14. flowPool: string;
  15. user: {
  16. uid: number;
  17. nickName: string;
  18. avatarUrl: string;
  19. }
  20. }