rxn-grife
Version:
🎀 Programmatic Styling Library for React, React Native and Expo.
14 lines (13 loc) • 524 B
TypeScript
import React from "react";
import { ElementCallback } from "../interfaces/Element";
import { ScrollView, View, Text } from "../index";
interface iMakeStyleFrom {
(baseElement: any, callback?: ElementCallback): React.ExoticComponent<{
children?: React.ReactNode;
}>;
View(callback: ElementCallback): typeof View;
Text(callback: ElementCallback): typeof Text;
ScrollView(callback: ElementCallback): typeof ScrollView;
}
declare const _default: iMakeStyleFrom;
export default _default;