Browse Source

fix: correct order in Prettify uses

Sv443 5 months ago
parent
commit
dde856d048
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/SelectorObserver.ts

+ 1 - 1
lib/SelectorObserver.ts

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