Skip to content

Commit

Permalink
Publish v3.3.1 update
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Oct 1, 2022
1 parent 7ece6a2 commit 77b54e7
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": "typescript-json",
"version": "3.3.1-dev.20221001",
"version": "3.3.1",
"description": "Runtime type checkers and 5x faster JSON.stringify() function",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion test/structures/ClassClosure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export type ClassClosure = ClassClosure.Something;
export namespace ClassClosure {
export class Something {
public constructor(public readonly id: string) {}
public readonly type: "something" = "something";
public readonly type: "something" = "something" as const;
public readonly closure: () => string = () => `${this.type}:${this.id}`;
}

Expand Down

0 comments on commit 77b54e7

Please sign in to comment.