| 18 | } |
| 19 | |
| 20 | export interface Options extends CallOptions { |
| 21 | /** |
| 22 | * The maximum time the given function is allowed to be delayed before it's invoked. |
| 23 | */ |
| 24 | maxWait?: number; |
| 25 | /** |
| 26 | * If the setting is set to true, all debouncing and timers will happen on the server side as well |
| 27 | */ |
| 28 | debounceOnServer?: boolean; |
| 29 | } |
| 30 | |
| 31 | export interface ControlFunctions<ReturnT> { |
| 32 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…