mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
15 lines
776 B
Markdown
15 lines
776 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [kibana-plugin-plugins-expressions-server](./kibana-plugin-plugins-expressions-server.md) > [ExpressionAstFunctionBuilder](./kibana-plugin-plugins-expressions-server.expressionastfunctionbuilder.md) > [removeArgument](./kibana-plugin-plugins-expressions-server.expressionastfunctionbuilder.removeargument.md)
|
|
|
|
## ExpressionAstFunctionBuilder.removeArgument property
|
|
|
|
Removes an (optional) argument from the function.
|
|
|
|
TypeScript will enforce that you only remove optional arguments. For manipulating required args, use `replaceArgument`<!-- -->.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
removeArgument: <A extends OptionalKeys<FunctionArgs<FnDef>>>(name: A) => this;
|
|
```
|