UNPKG

nativestyler

Version:

An advanced styling toolkit for React Native applications, providing dynamic, prop-based styling with efficient caching.

8 lines (7 loc) 221 B
import { LRU } from "tiny-lru"; interface CacheProps { [key: string]: any; } declare const cache: LRU<any>; declare function hashFunction(props: CacheProps, theme: CacheProps): string; export { cache, hashFunction };