RecordReference creates a reference to the 'Record' type in Typescript. The Record type takes in 2 type parameters, key and value.
(key, value bindings.ExpressionType)
| 13 | // RecordReference creates a reference to the 'Record' type in Typescript. |
| 14 | // The Record type takes in 2 type parameters, key and value. |
| 15 | func RecordReference(key, value bindings.ExpressionType) *bindings.ReferenceType { |
| 16 | return bindings.Reference(builtInRecord, key, value) |
| 17 | } |
| 18 | |
| 19 | func (ts *Typescript) includeComparable() { |
| 20 | // The zzz just pushes it to the end of the sorting. |
no test coverage detected
searching dependent graphs…