office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
12 lines (11 loc) • 517 B
TypeScript
import { IDocPageProps, ChecklistStatus } from '../../common/DocPage.types';
export { ChecklistStatus };
export interface IButtonDocPageProps {
areButtonsDisabled: boolean;
areButtonsChecked: boolean;
}
/**
* Exports a function because the documentation of this page requires some interactivity that is passed in here as a prop
* @param props Props that are specific to generating page props for ButtonPage
*/
export declare const ButtonPageProps: (props: IButtonDocPageProps) => IDocPageProps;