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