UNPKG

react-native-netlog-fab

Version:

Floating action button for network logging in React Native apps.

33 lines 893 B
import React from 'react'; interface NetworkLoggerFABProps { color?: string; icon?: React.ReactNode | string; iconSize?: number; iconColor?: string; position?: { bottom?: number; right?: number; }; showIn?: 'dev' | 'always'; modalHeight?: number; theme?: 'light' | 'dark' | { colors?: { background?: string; text?: string; border?: string; [key: string]: string | undefined; }; }; sort?: 'asc' | 'desc'; maxRows?: number; compact?: boolean; onBackPressed?: () => void; maxRequests?: number; ignoredHosts?: string[]; ignoredUrls?: string[]; ignoredPatterns?: RegExp[]; forceEnable?: boolean; } declare const NetworkLoggerFAB: React.FC<NetworkLoggerFABProps>; export default NetworkLoggerFAB; //# sourceMappingURL=NetworkLoggerFAB.d.ts.map