import ActivityEventCommandBase from '../commands/activityEventCommandBase'; import { ActivityType } from '../models/activityType'; import { Clip } from '../../../row/components/list/models/clip'; import ActivityRequestContent from '../models/activityRequestContent'; import UserActivityData from '../models/userActivityData'; import { IClipAction } from '../../../row/components/list/models/clipAction'; declare class FinishedClipCommand extends ActivityEventCommandBase { private clip; private clipIndex; private collection; /** The duration the user viewed the clips player for since the most * recent OpenedClip event with an Opened Reason of "swipe". */ private durationViewed; activityType: ActivityType; clipAction: IClipAction; constructor(clip: Clip, clipIndex: number, collection: string, /** The duration the user viewed the clips player for since the most * recent OpenedClip event with an Opened Reason of "swipe". */ durationViewed: number); buildRequestContent(): ActivityRequestContent; buildEventData(): UserActivityData; } export default FinishedClipCommand;