UNPKG

@mantine/hooks

Version:

A collection of 50+ hooks for state and UI management

6 lines (5 loc) 243 B
export interface UseHashOptions { getInitialValueInEffect?: boolean; } export type UseHashReturnValue = [string, (value: string) => void]; export declare function useHash({ getInitialValueInEffect, }?: UseHashOptions): UseHashReturnValue;