UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

15 lines (14 loc) 717 B
/*! Copyright [Amazon.com](http://amazon.com/), Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: Apache-2.0 */ import { Project, ProjectOptions } from "projen"; import { GeneratedHtmlRedocDocumentationOptions } from "../../types"; export interface GeneratedHtmlRedocDocumentationProjectOptions extends ProjectOptions, GeneratedHtmlRedocDocumentationOptions { /** * Path to the OpenAPI Specification for which to generate docs, relative to the project outdir */ readonly specPath: string; } export declare class GeneratedHtmlRedocDocumentationProject extends Project { private readonly generateTask; constructor(options: GeneratedHtmlRedocDocumentationProjectOptions); }