* Start building a list. * * The list give you the ability to expose a option that users can add multiple items to * * To create a list you define the schema, a set of options each item in the list needs to have. * * An example for this is level roles for a leveling
(name: string)
| 454 | * ``` |
| 455 | */ |
| 456 | startList(name: string) { |
| 457 | return new ListBuilder<{}>(name, this) |
| 458 | } |
| 459 | |
| 460 | /** |
| 461 | * @internal |