Skip to content

Commit

Permalink
add DataStoreKeyInfo (#1292)
Browse files Browse the repository at this point in the history
add `DataStoreKeyInfo` (was missing types in None.d.ts)

I saw this oversight when trying to use `DataStore.UpdateAsync`.
  • Loading branch information
AdamRaichu authored Sep 1, 2024
1 parent d83c0f3 commit d69851b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/customDefinitions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,10 @@ interface DataStoreService extends Instance {

interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {}

interface DataStoreKeyInfo extends Instance {
GetUserIds(this: DataStoreKeyInfo): Array<number>;
}

interface Dialog extends Instance {
readonly DialogChoiceSelected: RBXScriptSignal<(player: Player, dialogChoice: Dialog) => void>;
GetCurrentPlayers(this: Dialog): Array<Player>;
Expand Down

0 comments on commit d69851b

Please sign in to comment.