Application Binary Interface
StructFragment
A Fragment which represents a structure.
Extends
Properties
Property | Modifier | Type | Description | Inherited from |
---|---|---|---|---|
inputs | readonly | readonly ParamType [] | The inputs for the fragment. | NamedFragment .inputs |
name | readonly | string | The name of the fragment. | NamedFragment .name |
type | readonly | FragmentType | The type of the fragment. | NamedFragment .type |
Methods
format()
Returns a string representation of this struct as format
.
Returns
string
Overrides
Source
from()
Returns a new StructFragment for obj
.
Parameters
Parameter | Type |
---|---|
obj | any |
Returns
Overrides
Source
isConstructor()
Returns true if value
is a ConstructorFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is ConstructorFragment
Inherited from
Source
isError()
Returns true if value
is an ErrorFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is ErrorFragment
Inherited from
Source
isEvent()
Returns true if value
is an EventFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is EventFragment
Inherited from
Source
isFragment()
Returns true
and provides a type guard if value
is a StructFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is FunctionFragment
Source
isFunction()
Returns true if value
is a FunctionFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is FunctionFragment
Inherited from
Source
isStruct()
Returns true if value
is a StructFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is StructFragment
Inherited from
Source
Was this page helpful?