UNPKG

@gorhom/bottom-sheet

Version:

A performant interactive bottom sheet with fully configurable options 🚀

10 lines (9 loc) • 288 B
interface PrintOptions { component?: string; method?: string; params?: Record<string, any> | string | number | boolean; } declare type Print = (options: PrintOptions) => void; declare const enableLogging: () => void; declare let print: Print; export { print, enableLogging };