Sv443 1 рік тому
батько
коміт
d9f977c67a
2 змінених файлів з 2 додано та 0 видалено
  1. 1 0
      lib/misc.ts
  2. 1 0
      lib/onSelector.ts

+ 1 - 0
lib/misc.ts

@@ -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;

+ 1 - 0
lib/onSelector.ts

@@ -1,3 +1,4 @@
+/** Options for the `onSelector()` function */
 export type OnSelectorOpts<TElem extends Element = HTMLElement> = SelectorOptsOne<TElem> | SelectorOptsAll<TElem>;
 
 type SelectorOptsOne<TElem extends Element> = SelectorOptsBase & {