UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

14 lines (13 loc) 427 B
import * as React from 'react'; export interface IProgressIndicatorBasicExampleState { percentComplete: number; } export declare class ProgressIndicatorBasicExample extends React.Component<any, IProgressIndicatorBasicExampleState> { private _interval; private _async; constructor(); componentDidMount(): void; componentWillUnmount(): void; render(): JSX.Element; private _startProgressDemo(); }