| 7 | } from 'react'; |
| 8 | |
| 9 | export interface CallOptions { |
| 10 | /** |
| 11 | * Controls if the function should be invoked on the leading edge of the timeout. |
| 12 | */ |
| 13 | leading?: boolean; |
| 14 | /** |
| 15 | * Controls if the function should be invoked on the trailing edge of the timeout. |
| 16 | */ |
| 17 | trailing?: boolean; |
| 18 | } |
| 19 | |
| 20 | export interface Options extends CallOptions { |
| 21 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…