askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
10 lines (9 loc) • 398 B
TypeScript
import { AnalyticsInterface } from './analytics-interface';
import { Context } from '../../execution/context';
export declare class Analytics implements AnalyticsInterface {
private static clientSessionId;
private clientId;
private userIdentifier;
getAnalyticsHeaders(context: Context): Promise<Record<string, string>>;
getAnalyticsCookies(): Promise<Record<string, string>>;
}