UNPKG

941 BTypeScriptView Raw
1/**
2 * Forwards Facebool Pixels main window calls to Partytown's worker thread.
3 *
4 * https://developers.facebook.com/docs/facebook-pixel/get-started
5 *
6 * @public
7 */
8export declare const facebookPixelForward: PartytownForwardProperty[];
9
10/**
11 * Forwards Freshpaint.io main window calls to Partytown's worker thread.
12 *
13 * https://www.freshpaint.io/
14 *
15 * @public
16 */
17export declare const freshpaintForward: PartytownForwardProperty[];
18
19/**
20 * Forwards Google Tag Manager main window calls to Partytown's worker thread.
21 *
22 * @public
23 */
24export declare const googleTagManagerForward: PartytownForwardProperty[];
25
26/**
27 * A foward property to patch on `window`. The foward config property is an string,
28 * representing the call to forward, such as `dataLayer.push` or `fbq`.
29 *
30 * https://partytown.builder.io/forwarding-events
31 *
32 * @public
33 */
34declare type PartytownForwardProperty = string;
35
36export { }