UNPKG

@artsy/cohesion

Version:
19 lines (18 loc) 574 B
import { TappedCollectedArtworkImages } from "../../Schema/Events/MyCollection"; export interface TappedCollectedArtworkImagesArgs { contextOwnerId: string; contextOwnerSlug: string; } /** * * A user taps into images of an artwork in their My Collection * * @example * ``` * tappedCollectedArtworkImages({ * contextOwnerId: "my-artwork-id", * contextOwnerSlug: "my-artwork-slug" * }) * ``` */ export declare const tappedCollectedArtworkImages: ({ contextOwnerId, contextOwnerSlug, }: TappedCollectedArtworkImagesArgs) => TappedCollectedArtworkImages;