@artsy/cohesion
Version:
Analytics schema
20 lines (19 loc) • 593 B
TypeScript
import { TappedCollectedArtwork } from "../../Schema/Events/MyCollection";
export interface TappedCollectedArtworkArgs {
contextOwnerId?: string;
destinationOwnerId: string;
destinationOwnerSlug: string;
}
/**
*
* A user taps an artwork in their My Collection
*
* @example
* ```
* tappedCollectedArtwork({
* destinationOwnerId: "my-artwork-id",
* destinationOwnerSlug: "my-artwork-slug",
* })
* ```
*/
export declare const tappedCollectedArtwork: ({ contextOwnerId, destinationOwnerId, destinationOwnerSlug, }: TappedCollectedArtworkArgs) => TappedCollectedArtwork;