We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ee24e1 commit f05492dCopy full SHA for f05492d
packages/@jsii/spec/src/assembly.ts
@@ -1082,7 +1082,7 @@ export function describeTypeReference(type?: TypeReference): string {
1082
/**
1083
* Predefined constants for a set of jsii extension features
1084
*/
1085
-export type JsiiFeature = 'intersection-types';
+export type JsiiFeature = 'intersection-types' | 'class-covariant-overrides';
1086
1087
1088
* For every feature, is it enforced by the type system?
@@ -1096,6 +1096,7 @@ export type JsiiFeature = 'intersection-types';
1096
1097
const IS_FEATURE_TYPESYSTEM_ENFORCED: Record<JsiiFeature, boolean> = {
1098
'intersection-types': true,
1099
+ 'class-covariant-overrides': false,
1100
};
1101
1102
0 commit comments