useStack.d.ts 224 B

12345
  1. import type { StackConfig } from '../interface';
  2. type StackParams = Exclude<StackConfig, boolean>;
  3. type UseStack = (config?: StackConfig) => [boolean, StackParams];
  4. declare const useStack: UseStack;
  5. export default useStack;