UNPKG

docusaurus-plugin-openapi-docs

Version:

OpenAPI plugin for Docusaurus.

18 lines (17 loc) 672 B
"use strict"; /* ============================================================================ * Copyright (c) Palo Alto Networks * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * ========================================================================== */ Object.defineProperty(exports, "__esModule", { value: true }); exports.createDetailsSummary = createDetailsSummary; const utils_1 = require("./utils"); function createDetailsSummary({ children, style, ...rest }) { return (0, utils_1.create)("summary", { style: { ...style }, ...rest, children, }); }