Skip to content

Commit 7225750

Browse files
committed
api update
1 parent 1b839a2 commit 7225750

File tree

1 file changed

+12
-0
lines changed
  • packages/rest-api-construct

1 file changed

+12
-0
lines changed

packages/rest-api-construct/API.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
44
55
```ts
66

7+
import * as apiGateway from 'aws-cdk-lib/aws-apigateway';
8+
import { Construct } from 'constructs';
9+
import * as lamb from 'aws-cdk-lib/aws-lambda';
10+
11+
// @public
12+
export class RestApiConstruct extends Construct {
13+
// Warning: (ae-forgotten-export) The symbol "RestApiConstructProps" needs to be exported by the entry point index.d.ts
14+
constructor(scope: Construct, id: string, props: RestApiConstructProps);
15+
// (undocumented)
16+
readonly api: apiGateway.RestApi;
17+
}
18+
719
// (No @packageDocumentation comment for this package)
820

921
```

0 commit comments

Comments
 (0)