A labeled, possibly empty, list of references to user types.
For example, for some signature of some struct defined so:
const MyStruct = Schema.struct({ ... mySignature: Schema.Array(MyOtherStruct), ...}) Copy
const MyStruct = Schema.struct({ ... mySignature: Schema.Array(MyOtherStruct), ...})
We would expect the compiled signature of mySignature to have a reference to:
mySignature
{ display: 'MyOtherStruct[]', targets: ['MyOtherStruct'],} Copy
{ display: 'MyOtherStruct[]', targets: ['MyOtherStruct'],}
A labeled, possibly empty, list of references to user types.
For example, for some signature of some struct defined so:
We would expect the compiled signature of
mySignature
to have a reference to: