office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
22 lines (21 loc) • 749 B
TypeScript
import { BaseComponent } from '../../common/BaseComponent';
import { ITeachingBubbleProps } from './TeachingBubble.Props';
import { DirectionalHint } from '../../common/DirectionalHint';
import './TeachingBubble.scss';
export interface ITeachingBubbleState {
isTeachingBubbleVisible?: boolean;
}
export declare class TeachingBubble extends BaseComponent<ITeachingBubbleProps, ITeachingBubbleState> {
static defaultProps: {
calloutProps: {
beakStyle: string;
beakWidth: number;
gapSpace: number;
setInitialFocus: boolean;
doNotLayer: boolean;
directionalHint: DirectionalHint;
};
};
constructor(props: ITeachingBubbleProps);
render(): any;
}