react-native-ui-lib
Version:
<p align="center"> <img src="https://user-images.githubusercontent.com/1780255/105469025-56759000-5ca0-11eb-993d-3568c1fd54f4.png" height="250px" style="display:block"/> </p> <p align="center">UI Toolset & Components Library for React Native</p> <p a
15 lines (12 loc) • 487 B
TypeScript
type Constructor<T, TA = any> = new(...args: TA[]) => T;
type ExtendTypeWith<T extends Constructor<any>, OtherObject extends object> = Constructor<InstanceType<T> & OtherObject, ConstructorParameters<T>>;
type Dictionary<TYPE> = {[key: string]: TYPE};
declare module 'react-native-color' {
declare const HueGradient: any;
declare const LightnessGradient: any;
declare const SaturationGradient: any;
declare const Gradient: any;
}
interface Extendable {
[key: string]: any;
}