saltfish
Version:
An interactive video-guided tour system for web applications
18 lines • 669 B
TypeScript
/**
* Extracts tracking parameters from the current page URL
* @returns Map of parameter names to their values
*/
export declare function getCurrentTrackingParams(): Map<string, string>;
/**
* Appends tracking parameters from the current page to a target URL
* Does not overwrite parameters that already exist in the target URL
*
* @param targetUrl - The URL to navigate to
* @returns The URL with tracking parameters appended
*/
export declare function appendTrackingParams(targetUrl: string): string;
/**
* Export the list of tracking params for testing purposes
*/
export declare const trackingParamsList: string[];
//# sourceMappingURL=urlParams.d.ts.map