semicolon

This commit is contained in:
EncodedVenom 2024-07-07 15:36:44 -04:00
parent bc61553132
commit 10922fd471
No known key found for this signature in database
GPG key ID: 55A4643DA68078EF

2
src/index.d.ts vendored
View file

@ -14,7 +14,7 @@ type Query<T extends unknown[]> = {
* Modifies component data with a callback function * Modifies component data with a callback function
* @param fn The function to modify data * @param fn The function to modify data
*/ */
replace: (this: Query<T>, fn: (...components: T) => T extends [infer U] ? U : LuaTuple<T>) => void replace: (this: Query<T>, fn: (...components: T) => T extends [infer U] ? U : LuaTuple<T>) => void;
} & IterableFunction<LuaTuple<[Entity, ...T]>>; } & IterableFunction<LuaTuple<[Entity, ...T]>>;
// Utility Types // Utility Types