react-native-netlog-fab
Version:
Floating action button for network logging in React Native apps.
21 lines • 560 B
TypeScript
import React from 'react';
interface LoggerModalProps {
visible: boolean;
onClose: () => void;
height?: number;
theme?: 'light' | 'dark' | {
colors?: {
background?: string;
text?: string;
border?: string;
[key: string]: string | undefined;
};
};
sort?: 'asc' | 'desc';
maxRows?: number;
compact?: boolean;
onBackPressed?: () => void;
}
declare const LoggerModal: React.FC<LoggerModalProps>;
export default LoggerModal;
//# sourceMappingURL=LoggerModal.d.ts.map