UNPKG

253 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2export declare const HarnessRegistry = "harness-registry";
3export interface IHarnessDetails {
4 name: string;
5}
6export interface IHarness extends IHarnessDetails {
7 component: FunctionComponent;
8}