summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.decorators.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.decorators.d.ts')
-rw-r--r--cli/tsc/dts/lib.decorators.d.ts9
1 files changed, 3 insertions, 6 deletions
diff --git a/cli/tsc/dts/lib.decorators.d.ts b/cli/tsc/dts/lib.decorators.d.ts
index 11a8ca6de..5ac09b825 100644
--- a/cli/tsc/dts/lib.decorators.d.ts
+++ b/cli/tsc/dts/lib.decorators.d.ts
@@ -24,21 +24,18 @@ type ClassMemberDecoratorContext =
| ClassGetterDecoratorContext
| ClassSetterDecoratorContext
| ClassFieldDecoratorContext
- | ClassAccessorDecoratorContext
- ;
+ | ClassAccessorDecoratorContext;
/**
* The decorator context types provided to any decorator.
*/
type DecoratorContext =
| ClassDecoratorContext
- | ClassMemberDecoratorContext
- ;
+ | ClassMemberDecoratorContext;
type DecoratorMetadataObject = Record<PropertyKey, unknown> & object;
-type DecoratorMetadata =
- typeof globalThis extends { Symbol: { readonly metadata: symbol } } ? DecoratorMetadataObject : DecoratorMetadataObject | undefined;
+type DecoratorMetadata = typeof globalThis extends { Symbol: { readonly metadata: symbol; }; } ? DecoratorMetadataObject : DecoratorMetadataObject | undefined;
/**
* Context provided to a class decorator.