diff --git a/include/customDefinitions.d.ts b/include/customDefinitions.d.ts index ff56aa660..238520c95 100644 --- a/include/customDefinitions.d.ts +++ b/include/customDefinitions.d.ts @@ -670,7 +670,7 @@ interface MemoryStoreSortedMap extends Instance { exclusiveLowerBound?: { key?: string; sortKey?: string | number }, exclusiveUpperBound?: { key?: string; sortKey?: string | number }, ): Array<{ key: string; value: unknown; sortKey?: string | number }>; - GetAsync(this: MemoryStoreSortedMap, key: string): LuaTuple<[key?: string, sortKey?: string | number]>; + GetAsync(this: MemoryStoreSortedMap, key: string): LuaTuple<[value?: unknown, sortKey?: string | number]>; } /** @server */