html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
9 lines (8 loc) • 352 B
TypeScript
import React, { ReactNode } from 'react';
import { YandexMetrika } from "../../modules/yandex-metrika";
export declare const AnalyticsContext: React.Context<YandexMetrika | null>;
interface AnalyticsProviderProps {
children: React.ReactNode;
}
export declare const AnalyticsProvider: ({ children }: AnalyticsProviderProps) => ReactNode;
export {};