Forráskód Böngészése

Update PriorityQueue.d.ts

Bruno Fanini 3 éve
szülő
commit
621827c3e9
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      src/utilities/PriorityQueue.d.ts

+ 1 - 1
src/utilities/PriorityQueue.d.ts

@@ -4,7 +4,7 @@ export class PriorityQueue {
 	autoUpdate : Boolean;
 	priorityCallback : ( itemA : any , itemB : any ) => Number;
 	
-	schedulingCallback : ( func : Function ) => void;
+	schedulingCallback : ( func : Function ) : void;
 
 	sort() : void;
 	add( item : any, callback : ( item : any ) => any ) : Promise< any >;