react-native-loader
react-native-loader copied to clipboard
Typescript Missing Types
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;
}