office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
26 lines (25 loc) • 804 B
TypeScript
/// <reference types="react" />
import { IStyle } from '../../../Styling';
import { BaseComponent } from 'office-ui-fabric-react/lib/Utilities';
export interface ICoachmarkBasicExampleState {
isVisible?: boolean;
isCoachmarkCollapsed?: boolean;
targetElement?: HTMLElement;
}
export interface ICoachmarkBasicExampleStyles {
/**
* Style for the root element in the default enabled/unchecked state.
*/
root?: IStyle;
/**
* The example button container
*/
buttonContainer: IStyle;
}
export declare class CoachmarkBasicExample extends BaseComponent<{}, ICoachmarkBasicExampleState> {
private _targetButton;
constructor(props: {});
render(): JSX.Element;
private _onShowMenuClicked();
private _onCalloutDismiss();
}