office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
10 lines (9 loc) • 337 B
TypeScript
import { BaseComponent } from '../../../Utilities';
import { IButtonProps } from '../Button.Props';
export declare class CompoundButton extends BaseComponent<IButtonProps, {}> {
/**
* Tell BaseComponent to bypass resolution of componentRef.
*/
protected _shouldUpdateComponentRef: boolean;
render(): JSX.Element;
}