| 680 | * For root constructs, the id is optional. |
| 681 | */ |
| 682 | export class RootConstruct extends Construct { |
| 683 | /** |
| 684 | * Creates a new root construct node. |
| 685 | * |
| 686 | * @param id The scoped construct ID. Must be unique amongst siblings. If |
| 687 | * the ID includes a path separator (`/`), then it will be replaced by double |
| 688 | * dash `--`. |
| 689 | */ |
| 690 | constructor(id?: string) { |
| 691 | super(undefined as any, id ?? ''); |
| 692 | } |
| 693 | } |
nothing calls this directly
no outgoing calls
no test coverage detected