@company-semantics/contracts 0.83.0 → 0.83.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -98,6 +98,7 @@ export interface ExecutionEventMetadataMap {
|
|
|
98
98
|
|
|
99
99
|
// Compile-time exhaustiveness check: this line errors if
|
|
100
100
|
// ExecutionEventMetadataMap keys don't match ExecutionEventType
|
|
101
|
-
|
|
101
|
+
// Exported to avoid noUnusedLocals errors in consumer repos
|
|
102
|
+
export type _ExhaustivenessCheck = {
|
|
102
103
|
[K in ExecutionEventType]: ExecutionEventMetadataMap[K];
|
|
103
104
|
};
|