primevue-mirror/components/lib/progressspinner/ProgressSpinner.d.ts

62 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-03-01 14:12:31 +00:00
/**
*
* ProgressSpinner is a process status indicator.
*
* [Live Demo](https://www.primevue.org/progressspinner)
*
* @module progressspinner
*
*/
2022-09-06 12:03:37 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2023-03-01 14:12:31 +00:00
/**
* Defines valid properties in ProgressSpinner component.
*/
2022-09-06 12:03:37 +00:00
export interface ProgressSpinnerProps {
/**
* Width of the circle stroke.
2023-03-08 10:51:52 +00:00
* @defaultValue 2
2022-09-06 12:03:37 +00:00
*/
strokeWidth?: string | undefined;
/**
* Color for the background of the circle.
*/
fill?: string | undefined;
/**
* Duration of the rotate animation.
2023-03-08 10:51:52 +00:00
* @defaultValue 2s
2022-09-06 12:03:37 +00:00
*/
animationDuration?: string | undefined;
}
2023-03-01 14:12:31 +00:00
/**
* Defines valid slots in ProgressSpinner component.
*/
2022-09-14 11:26:01 +00:00
export interface ProgressSpinnerSlots {}
2022-09-06 12:03:37 +00:00
2023-03-01 14:12:31 +00:00
/**
* Defines valid emits in ProgressSpinner component.
*/
export interface ProgressSpinnerEmits {}
2022-09-06 12:03:37 +00:00
2023-03-01 14:12:31 +00:00
/**
* **PrimeVue - ProgressSpinner**
*
* _ProgressSpinner is a process status indicator._
*
* [Live Demo](https://www.primevue.org/progressspinner/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
2022-09-14 11:26:01 +00:00
declare class ProgressSpinner extends ClassComponent<ProgressSpinnerProps, ProgressSpinnerSlots, ProgressSpinnerEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
ProgressSpinner: GlobalComponentConstructor<ProgressSpinner>;
2022-09-06 12:03:37 +00:00
}
}
export default ProgressSpinner;