Procházet zdrojové kódy

fix: correct order in Prettify uses

Sv443 před 5 měsíci
rodič
revize
dde856d048
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      lib/SelectorObserver.ts

+ 1 - 1
lib/SelectorObserver.ts

@@ -48,7 +48,7 @@ export type SelectorObserverOptions = {
   checkInterval?: number;
 };
 
-export type SelectorObserverConstructorOptions = Prettify<MutationObserverInit & SelectorObserverOptions>;
+export type SelectorObserverConstructorOptions = Prettify<SelectorObserverOptions & MutationObserverInit>;
 
 /** Observes the children of the given element for changes */
 export class SelectorObserver {