press-plus
Version:
39 lines (37 loc) • 610 B
text/typescript
const player = {
props: {
liveInfo: {
type: Object,
default: () => ({}),
},
reportInfo: {
type: Object,
default: () => ({}),
},
title: {
type: String,
default: '',
},
userRole: {
type: String,
default: '',
},
isAdmin: {
type: Boolean,
default: false,
},
playerBpInfo: {
type: Object,
default: () => ({}),
},
likeMessageList: {
type: Array,
default: () => ([]),
},
showResolution: {
type: Boolean,
default: false,
},
},
};
export default player;