exporttypeDebounceOptions= {/** * Time to wait before invoking the function * * @defaultValue 0 */wait?: number/** * immediately invoke before the timeout * * @defaultValue false */leading?: boolean/** * invoke the function after the timeout * * @defaultValue true */trailing?: boolean}exporttypeUseDebouncedFnOptions=DebounceOptions & {}