From 48a7f38afc6abaa2f0b44fe72fe77281d7ef1e7b Mon Sep 17 00:00:00 2001 From: Ryan Waskiewicz Date: Thu, 29 Feb 2024 17:08:59 -0500 Subject: [PATCH] fix: invalid syntax for ClassAutoAccessorDescriptor add a colon immediately following to the `value#set` property --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b842f95..cf3f38e 100644 --- a/README.md +++ b/README.md @@ -556,7 +556,7 @@ Auto-accessors can be decorated, and auto-accessor decorators have the following type ClassAutoAccessorDecorator = ( value: { get: () => unknown; - set(value: unknown) => void; + set: (value: unknown) => void; }, context: { kind: "accessor";