Explorar o código

fix: correct order in Prettify uses

Sv443 hai 5 meses
pai
achega
dde856d048
Modificáronse 1 ficheiros con 1 adicións e 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 {