creevey
Version:
Cross-browser screenshot testing tool for Storybook with fancy UI Runner
12 lines (11 loc) • 523 B
TypeScript
import React from 'react';
import { Theme } from 'storybook/theming';
import { TestStatus } from '../../../../types.js';
import { CreeveyTestsStatus } from '../../../shared/helpers.js';
export interface TestsStatusProps extends CreeveyTestsStatus {
onClickByStatus: (value: TestStatus) => void;
theme?: Theme;
}
export declare const TestsStatus: React.ForwardRefExoticComponent<Pick<TestsStatusProps, "successCount" | "failedCount" | "pendingCount" | "approvedCount" | "onClickByStatus"> & {
theme?: Theme;
}>;