Fix type error when not specifying scope destroy delay

This commit is contained in:
centauri 2025-11-26 12:38:39 +00:00
parent d7d2f5167e
commit f370e3f841
4 changed files with 5 additions and 5 deletions

View file

@ -10,7 +10,7 @@ type Source<T> = () -> T
local function values<K, V, Obj>(
input: Source<Map<K, V>>,
component: (V, Source<K>, Source<boolean>) -> (Obj, number?)
component: (V, Source<K>, Source<boolean>) -> (Obj, ...number)
): Source<Array<Obj>>
local update_count = 0
local scopes = {} :: Map<V, {