| 123456789101112131415161718192021 |
- export const PlayState = {
- prepared: 1,
- playing: 2,
- pause: 3,
- stoped: 4,
- }
- export type VideoInfo = {
- id: number;
- title: string;
- coverImgPath: string;
- shareTitle: string;
- videoPath: string;
- recomTraceId: string;
- flowPool: string;
- user: {
- uid: number;
- nickName: string;
- avatarUrl: string;
- }
- }
|