diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-31 13:09:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 17:09:04 +0000 |
commit | 7ec45770c875b27f71e82138b2ac03610ad3b47b (patch) | |
tree | 259f0efed7106f0d1880df1959df94a7f0c9e533 /cli/tsc/dts | |
parent | 87ccd4bcd14bd67037c709829575f62caf8251bb (diff) |
fix: upgrade to TypeScript 5.0.3 (#18532)
Diffstat (limited to 'cli/tsc/dts')
-rw-r--r-- | cli/tsc/dts/lib.decorators.legacy.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.decorators.legacy.d.ts b/cli/tsc/dts/lib.decorators.legacy.d.ts index 39bf2413e..26fbcb526 100644 --- a/cli/tsc/dts/lib.decorators.legacy.d.ts +++ b/cli/tsc/dts/lib.decorators.legacy.d.ts @@ -19,4 +19,4 @@ and limitations under the License. declare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void; declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; declare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void; -declare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void; +declare type ParameterDecorator = (target: Object, propertyKey: string | symbol | undefined, parameterIndex: number) => void; |