UNPKG

storybook-addon-playground

Version:

A playground to enable consumers learn how to use the component library or to reproduce bugs

9 lines 281 B
import { Code } from "@/types"; interface UseShareReturnType { onShare: () => Promise<void>; isShareCopied: boolean; shouldAllowShare: boolean; } declare const useShare: (code: Code) => UseShareReturnType; export default useShare; //# sourceMappingURL=useShare.d.ts.map