react-native-react-query-devtools
Version:
React Query Dev Tools for React Native
9 lines (8 loc) • 302 B
TypeScript
/// <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 {};