UNPKG

291 BTypeScriptView Raw
1/**
2 * useClipboard.ts
3 * This code is inspired from the @react-native-community/hooks package
4 * All credit goes to author of the useClipboard custom hooks.
5 * https://github.com/react-native-community/hooks
6 */
7export declare const useClipboard: () => [string, (content: string) => void];