Skip to content

Commit

Permalink
Fix defaultuserIds type
Browse files Browse the repository at this point in the history
  • Loading branch information
nezuo committed Oct 24, 2023
1 parent 9573b89 commit dded171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type CollectionOptions<T> = {
}

export type Collection<T> = {
load: (self: Collection<T>, key: string, defaultUserIds: { number }) -> PromiseTypes.TypedPromise<Document<T>>,
load: (self: Collection<T>, key: string, defaultUserIds: { number }?) -> PromiseTypes.TypedPromise<Document<T>>,
}

export type Document<T> = {
Expand Down

0 comments on commit dded171

Please sign in to comment.