@@ -1,3 +1,4 @@
+/** Options for the `fetchAdvanced()` function */
export type FetchAdvancedOpts = RequestInit & Partial<{
/** Timeout in milliseconds after which the fetch call will be canceled with an AbortController signal */
timeout: number;
+/** Options for the `onSelector()` function */
export type OnSelectorOpts<TElem extends Element = HTMLElement> = SelectorOptsOne<TElem> | SelectorOptsAll<TElem>;
type SelectorOptsOne<TElem extends Element> = SelectorOptsBase & {