@artsy/cohesion
Version:
Analytics schema
22 lines (21 loc) • 750 B
TypeScript
import { ContextModule, ScreenOwnerType, TappedRegisterToBid } from "../../Schema";
export interface TappedRegisterToBidArgs {
contextModule: ContextModule;
contextScreenOwnerType: ScreenOwnerType;
contextScreenOwnerId: string;
contextScreenOwnerSlug: string;
}
/**
* A user taps on register to bid button within the iOS app
*
* @example
* ```
* tappedRegisterToBid({
* contextModule: true,
* contextScreenOwnerId: "5359794d2a1e86c3741001f8",
* contextScreenOwnerSlug "auction-slug":
* contextScreenOwnerType: "sale",
* })
* ```
*/
export declare const tappedRegisterToBid: ({ contextModule, contextScreenOwnerType, contextScreenOwnerId, contextScreenOwnerSlug, }: TappedRegisterToBidArgs) => TappedRegisterToBid;