office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
15 lines (14 loc) • 481 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
export interface IProgressIndicatorBasicExampleState {
percentComplete: number;
}
export declare class ProgressIndicatorBasicExample extends React.Component<{}, IProgressIndicatorBasicExampleState> {
private _interval;
private _async;
constructor(props: {});
componentDidMount(): void;
componentWillUnmount(): void;
render(): JSX.Element;
private _startProgressDemo();
}