UNPKG

react-native-react-query-devtools

Version:
9 lines (8 loc) 302 B
/// <reference types="react" /> export type ClipboardFunction = (text: string) => Promise<boolean>; interface CopyContextType { onCopy?: ClipboardFunction; } export declare const CopyContext: import("react").Context<CopyContextType>; export declare const useCopy: () => CopyContextType; export {};