Skip to content

Commit

Permalink
fix(types): silence errors from multiple dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
littensy committed Jun 26, 2023
1 parent 074ce72 commit d6ff3fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/createSelector.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
type CreateSelectorFunction = <Result, Input, Argument...>(
dependencies: { (Argument...) -> Input },
resultFunc: (...Input) -> Result
type CreateSelectorFunction = <Result, Argument...>(
dependencies: { (Argument...) -> any },
resultFunc: (...any) -> Result
) -> (Argument...) -> Result

--[=[
Expand Down

0 comments on commit d6ff3fe

Please sign in to comment.