import type { SharedActionType } from './actionType'; type BaseAction = { url: null; text: string; storeType: 'none'; appStoreId: null; playStoreBundleId: null; sheetId: null; sheetTitle: null; sheetSize: null; id: string; iosSwipeUpUrl: null; androidSwipeUpUrl: null; tvosUrl: null; rokuUrl: null; fireTvUrl: null; }; export type ClipCollectionAction = BaseAction & { type: SharedActionType.clipCollection; storyId: null; clipId: null; storyCategoryId: null; clipCollectionId: string | null; }; export type ClipAction = BaseAction & { type: SharedActionType.clip; storyId: null; clipId: string | null; storyCategoryId: null; clipCollectionId: null; }; export type StoryCategoryAction = BaseAction & { type: SharedActionType.storyCategory; storyId: null; clipId: null; storyCategoryId: string | null; clipCollectionId: null; }; export type StoryAction = BaseAction & { type: SharedActionType.story; storyId: string | null; clipId: string; storyCategoryId: null; clipCollectionId: null; }; export {};