UNPKG

@aws/pdk

Version:

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

16 lines (15 loc) 630 B
/*! Copyright [Amazon.com](http://amazon.com/), Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: Apache-2.0 */ import { NodeProject } from "projen/lib/javascript"; import { TypeSpecProjectDefinition, TypeSpecProjectDefinitionOptions } from "./type-spec-project-definition"; /** * Options for the TypeSpec model definition */ export interface TypeSpecDefinitionOptions extends TypeSpecProjectDefinitionOptions { } /** * The TypeSpec model definition */ export declare class TypeSpecDefinition extends TypeSpecProjectDefinition { constructor(project: NodeProject, options: TypeSpecDefinitionOptions); }