Explorar el Código

fix: correct order in Prettify uses

Sv443 hace 5 meses
padre
commit
dde856d048
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 {