ShieldStrategy.ts 291 Bytes
/**
 * 屏蔽策略
 */
export interface ShieldStrategy {
  allowBarrage: boolean; // 允许弹幕
  allowComment: boolean; // 允许评论
  allowRedPacket: boolean; // 允许红包
  allowShare: boolean; // 允许分享
  allowLike: boolean; // 允许喜欢
  allowCommentShare: boolean;
}