office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
1 lines • 650 B
JavaScript
define([], function() { return "export interface IProgressIndicatorProps {\r\n\r\n /**\r\n * Class name to apply to the root in addition to ms-ProgressIndicator.\r\n */\r\n className?: string;\r\n\r\n /**\r\n * Label to display above the control.\r\n */\r\n label?: string;\r\n\r\n /**\r\n * Text describing or supplementing the operation.\r\n */\r\n description?: string;\r\n\r\n /**\r\n * Percentage of the operation's completeness.\r\n */\r\n percentComplete?: number;\r\n\r\n /**\r\n * @deprecated\r\n * Deprecated at v0.43.0, to be removed at >= v0.53.0. Use 'label' instead.\r\n */\r\n title?: string;\r\n}"; });