@artsy/cohesion
Version:
Analytics schema
10 lines (9 loc) • 447 B
TypeScript
import { ContextModule, ScreenOwnerType, TappedSell } from "../../Schema";
export interface TappedSellArgs {
contextModule: ContextModule;
contextScreenOwnerType: ScreenOwnerType;
contextScreenOwnerId?: string;
contextScreenOwnerSlug?: string;
subject: string;
}
export declare const tappedSell: ({ contextModule, contextScreenOwnerType, contextScreenOwnerId, contextScreenOwnerSlug, subject, }: TappedSellArgs) => TappedSell;