office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
12 lines (11 loc) • 397 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
export interface ITeachingBubbleBasicExampleState {
isTeachingBubbleVisible?: boolean;
}
export declare class TeachingBubbleBasicExample extends React.Component<{}, ITeachingBubbleBasicExampleState> {
private _menuButtonElement;
constructor(props: {});
render(): JSX.Element;
private _onDismiss(ev);
}