File tree Expand file tree Collapse file tree 1 file changed +1
-27
lines changed
packages/rest-api-construct Expand file tree Collapse file tree 1 file changed +1
-27
lines changed Original file line number Diff line number Diff line change @@ -8,25 +8,6 @@ import * as apiGateway from 'aws-cdk-lib/aws-apigateway';
8
8
import { Construct } from ' constructs' ;
9
9
import * as lamb from ' aws-cdk-lib/aws-lambda' ;
10
10
11
- // @public (undocumented)
12
- export type ExistingDirectory = {
13
- path: string ;
14
- };
15
-
16
- // @public (undocumented)
17
- export type ExistingLambda = {
18
- id: string ;
19
- name: string ;
20
- };
21
-
22
- // @public (undocumented)
23
- export type HttpMethod = ' GET' | ' POST' | ' PUT' | ' DELETE' | ' PATCH' | ' HEAD' | ' OPTIONS' ;
24
-
25
- // @public (undocumented)
26
- export type NewFromCode = {
27
- code: string ;
28
- };
29
-
30
11
// @public
31
12
export class RestApiConstruct extends Construct {
32
13
constructor (scope : Construct , id : string , props : RestApiConstructProps );
@@ -40,16 +21,9 @@ export type RestApiConstructProps = {
40
21
apiProps: RestApiPathConfig [];
41
22
};
42
23
43
- // @public (undocumented)
44
- export type RestApiPathConfig = {
45
- path: string ;
46
- routes: HttpMethod [];
47
- lambdaEntry: LambdaSource ;
48
- };
49
-
50
24
// Warnings were encountered during analysis:
51
25
//
52
- // src/types.ts:22 :3 - (ae-forgotten-export) The symbol "LambdaSource " needs to be exported by the entry point index.d.ts
26
+ // src/types.ts:16 :3 - (ae-forgotten-export) The symbol "RestApiPathConfig " needs to be exported by the entry point index.d.ts
53
27
54
28
// (No @packageDocumentation comment for this package)
55
29
You can’t perform that action at this time.
0 commit comments