Update untrack() type to allow no return

This commit is contained in:
aaron 2025-01-07 00:06:39 +00:00
parent a383c4ce69
commit b7878753bd
2 changed files with 1 additions and 4 deletions

View file

@ -22,4 +22,4 @@ local function untrack<T>(source: () -> T): T
end
end
return untrack
return untrack :: ( <T>(fn: () -> T) -> T ) & ( (fn: () -> ()) -> () )