Skip to content

Commit

Permalink
Fixed .rawValue compiling to :rawValue
Browse files Browse the repository at this point in the history
  • Loading branch information
howmanysmall committed Jan 9, 2021
1 parent 8b0c69f commit e0a1163
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rbxts/enumerator",
"version": "1.0.6",
"version": "1.0.7",
"description": "enumerations in pure Luau, following an api almost identical to enumerate",
"main": "out/init.lua",
"types": "out/enumerator/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/enumerator/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Credit to Xuleos and Osyris for the typing.
interface FakeEnum<T> {
value: T;
rawValue(): T;
rawValue(this: void): T;
}

interface SharedEnumerationMethods {
Expand Down

0 comments on commit e0a1163

Please sign in to comment.