useActive.d.ts 228 B

123456
  1. import * as React from 'react';
  2. /**
  3. * Control the active open options path.
  4. */
  5. declare const useActive: (multiple?: boolean, open?: boolean) => [React.Key[], (activeValueCells: React.Key[]) => void];
  6. export default useActive;