UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

13 lines (12 loc) 414 B
import * as React from 'react'; export interface WizardLegendProps extends React.ClassAttributes<WizardLegend> { StepNames: string[]; ActiveStepName: string; FriendlyName: string; CanShowAllSteps: boolean; onStepButtonClicked: (stepName: string) => void; } export declare class WizardLegend extends React.Component<WizardLegendProps, {}> { render(): any; private onStepButtonClicked; }