react-native-loader icon indicating copy to clipboard operation
react-native-loader copied to clipboard

Typescript Missing Types

Open jerameel opened this issue 4 years ago • 0 comments

This package is missing typescript types. I've created one myself, just posting it here if anyone needs it.

react-native-loader.d.ts

declare module 'react-native-loader' {
  interface ILoader {
    size: number;
    color: string;
  }
  export function Bubbles(props: ILoader): any;
  export function DoubleBounce(props: ILoader): any;
  export function Bars(props: ILoader): any;
  export function Pulse(props: ILoader): any;
}

jerameel avatar Jun 09 '21 15:06 jerameel