# MemberExpressionPartProps

## Members

|          |                                                                 |                                                                                                                                           |
| -------- | --------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| args     | optional[Children](../../../core/types/children/)\[] \| boolean | Arguments to construct a call expression.                                                                                                 |
| await    | optional boolean                                                | Whether to await the value that results from this part of the member expression.                                                          |
| children | optional[Children](../../../core/types/children/)               | The contents of this part. When passed, overrides the other props except nullish.                                                         |
| id       | optional string \| number                                       | The identifier for this part of the member expression.                                                                                    |
| index    | optional number                                                 | The index for this part of the member expression. This is used when the part is an array access (i.e. `foo[0]`).                          |
| nullish  | optional boolean                                                | This part is nullish. Subsequent parts use conditional access operators.                                                                  |
| quoteId  | optional boolean                                                | Whether the identifier should be quoted or not. Only needed when providing the `children` prop, otherwise it is determined automatically. |
| refkey   | optional[Refkey](../../../core/types/refkey/)                   | A refkey for a symbol whose name becomes the identifier.                                                                                  |
| symbol   | optional[OutputSymbol](../../../core/types/outputsymbol/)       | A symbol whose name becomes the identifier.                                                                                               |
