UNPKG

@rc-component/notification

Version:
12 lines (11 loc) 343 B
export interface StackConfig { threshold?: number; offset?: number; } type StackParams = Required<StackConfig>; type UseStack = (config?: boolean | StackConfig) => [boolean, StackParams]; /** * Resolves the stack setting into an enabled flag and normalized stack params. */ declare const useStack: UseStack; export default useStack;