UNPKG

@bitnami/readme-generator-for-helm

Version:

Autogenerate READMEs tables and OpenAPI schemas for Helm Charts

25 lines (20 loc) 451 B
/* * Copyright Broadcom, Inc. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ class Metadata { constructor() { /* Parsed metadata comments */ // List of available sections this.sections = []; // All parameters across sections this.parameters = []; } addSection(section) { this.sections.push(section); } addParameter(parameter) { this.parameters.push(parameter); } } module.exports = Metadata;