(
annotations: Annotations.Schema<{ readonly [P in Schema.Type<K>]: Schema.Type<V> }>
)
| 3042 | ): Record$<K, V> { |
| 3043 | return class RecordClass extends makeTypeLiteralClass({}, [{ key, value }], ast) { |
| 3044 | static override annotations( |
| 3045 | annotations: Annotations.Schema<{ readonly [P in Schema.Type<K>]: Schema.Type<V> }> |
| 3046 | ): Record$<K, V> { |
| 3047 | return makeRecordClass(key, value, mergeSchemaAnnotations(this.ast, annotations)) |
| 3048 | } |
| 3049 | |
| 3050 | static key = key |
| 3051 |
nothing calls this directly
no test coverage detected