@types/react-native-animated-progress
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

Installation

npm install --save @types/react-native-animated-progress

Summary

This package contains type definitions for react-native-animated-progress (https://github.com/kcotias/react-native-animated-progress).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-animated-progress.

index.d.ts

import { FC } from "react";

export interface AnimatedProgressProps {
    /* Integer - From 0 to 100 (Default - 0).
     *  Chooses the point where the progress should animate to,
     *  based on the progress bar width.
     */
    progress?: number;
    /** (Default - 1100) */
    progressDuration?: number;
    /* Integer (Default - 2)
     *  Sets the height of the bar.
     */
    height?: number;
    /* (Default - none)
     *  Sets the color of the progress bar.
     */
    backgroundColor?: string;
    /* (Default - #A6A6A6).
     *  Sets the color of the progress bar track.
     */
    trackColor?: string;
    /* (Default - false)
     *  Sets the bar to animate constantly as a loading progress.
     */
    indeterminate?: boolean;
    /** (Default - 1100) */
    indeterminateDuration?: number;
    /* (Default - true)
     *  Chooses wheter to animate the progress or not
     */
    animated?: boolean;
    onCompletion?: () => any;
}

export const AnimatedProgress: FC<AnimatedProgressProps>;

export default AnimatedProgress;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: @types/react

Credits

These definitions were written by .

Readme

Keywords

none

Package Sidebar

Install

npm i @types/react-native-animated-progress

Weekly Downloads

898

Version

1.0.4

License

MIT

Unpacked Size

4.71 kB

Total Files

5

Last publish

Collaborators

  • types