formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
21 lines (20 loc) • 518 B
TypeScript
import { DirectionalHint } from "office-ui-fabric-react";
import { ActionLink } from "../../objects/ActionLink";
/**
* Interface fo the Info Callout States
*/
export interface IInfoCalloutState {
IsInfoVisible: boolean;
}
/**
* Interface fo the Info Callout Props
*/
export interface IInfoCalloutProps {
Key: string;
HeaderText?: string;
ActionLink?: ActionLink;
DirectionalHint?: DirectionalHint;
SmallIcon?: boolean;
UseAsCell?: boolean;
MarginTop?: number;
}