@aws-sdk/client-qapps 3.612.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +397 -0
- package/dist-cjs/QApps.js +57 -0
- package/dist-cjs/QAppsClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/AssociateLibraryItemReviewCommand.js +28 -0
- package/dist-cjs/commands/AssociateQAppWithUserCommand.js +28 -0
- package/dist-cjs/commands/CreateLibraryItemCommand.js +28 -0
- package/dist-cjs/commands/CreateQAppCommand.js +28 -0
- package/dist-cjs/commands/DeleteLibraryItemCommand.js +28 -0
- package/dist-cjs/commands/DeleteQAppCommand.js +28 -0
- package/dist-cjs/commands/DisassociateLibraryItemReviewCommand.js +28 -0
- package/dist-cjs/commands/DisassociateQAppFromUserCommand.js +28 -0
- package/dist-cjs/commands/GetLibraryItemCommand.js +28 -0
- package/dist-cjs/commands/GetQAppCommand.js +28 -0
- package/dist-cjs/commands/GetQAppSessionCommand.js +28 -0
- package/dist-cjs/commands/ImportDocumentCommand.js +28 -0
- package/dist-cjs/commands/ListLibraryItemsCommand.js +28 -0
- package/dist-cjs/commands/ListQAppsCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
- package/dist-cjs/commands/PredictQAppCommand.js +28 -0
- package/dist-cjs/commands/StartQAppSessionCommand.js +28 -0
- package/dist-cjs/commands/StopQAppSessionCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +28 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateLibraryItemCommand.js +28 -0
- package/dist-cjs/commands/UpdateQAppCommand.js +28 -0
- package/dist-cjs/commands/UpdateQAppSessionCommand.js +28 -0
- package/dist-cjs/commands/index.js +26 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/QAppsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +236 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListLibraryItemsPaginator.js +7 -0
- package/dist-cjs/pagination/ListQAppsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1207 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/QApps.js +53 -0
- package/dist-es/QAppsClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AssociateLibraryItemReviewCommand.js +24 -0
- package/dist-es/commands/AssociateQAppWithUserCommand.js +24 -0
- package/dist-es/commands/CreateLibraryItemCommand.js +24 -0
- package/dist-es/commands/CreateQAppCommand.js +24 -0
- package/dist-es/commands/DeleteLibraryItemCommand.js +24 -0
- package/dist-es/commands/DeleteQAppCommand.js +24 -0
- package/dist-es/commands/DisassociateLibraryItemReviewCommand.js +24 -0
- package/dist-es/commands/DisassociateQAppFromUserCommand.js +24 -0
- package/dist-es/commands/GetLibraryItemCommand.js +24 -0
- package/dist-es/commands/GetQAppCommand.js +24 -0
- package/dist-es/commands/GetQAppSessionCommand.js +24 -0
- package/dist-es/commands/ImportDocumentCommand.js +24 -0
- package/dist-es/commands/ListLibraryItemsCommand.js +24 -0
- package/dist-es/commands/ListQAppsCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/dist-es/commands/PredictQAppCommand.js +24 -0
- package/dist-es/commands/StartQAppSessionCommand.js +24 -0
- package/dist-es/commands/StopQAppSessionCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +24 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateLibraryItemCommand.js +24 -0
- package/dist-es/commands/UpdateQAppCommand.js +24 -0
- package/dist-es/commands/UpdateQAppSessionCommand.js +24 -0
- package/dist-es/commands/index.js +23 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/QAppsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +224 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListLibraryItemsPaginator.js +4 -0
- package/dist-es/pagination/ListQAppsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1158 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/QApps.d.ts +179 -0
- package/dist-types/QAppsClient.d.ts +202 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/AssociateLibraryItemReviewCommand.d.ts +83 -0
- package/dist-types/commands/AssociateQAppWithUserCommand.d.ts +85 -0
- package/dist-types/commands/CreateLibraryItemCommand.d.ts +95 -0
- package/dist-types/commands/CreateQAppCommand.d.ts +225 -0
- package/dist-types/commands/DeleteLibraryItemCommand.d.ts +83 -0
- package/dist-types/commands/DeleteQAppCommand.d.ts +78 -0
- package/dist-types/commands/DisassociateLibraryItemReviewCommand.d.ts +82 -0
- package/dist-types/commands/DisassociateQAppFromUserCommand.d.ts +79 -0
- package/dist-types/commands/GetLibraryItemCommand.d.ts +98 -0
- package/dist-types/commands/GetQAppCommand.d.ts +224 -0
- package/dist-types/commands/GetQAppSessionCommand.d.ts +92 -0
- package/dist-types/commands/ImportDocumentCommand.d.ts +97 -0
- package/dist-types/commands/ListLibraryItemsCommand.d.ts +103 -0
- package/dist-types/commands/ListQAppsCommand.d.ts +91 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +78 -0
- package/dist-types/commands/PredictQAppCommand.d.ts +209 -0
- package/dist-types/commands/StartQAppSessionCommand.d.ts +100 -0
- package/dist-types/commands/StopQAppSessionCommand.d.ts +84 -0
- package/dist-types/commands/TagResourceCommand.d.ts +81 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +77 -0
- package/dist-types/commands/UpdateLibraryItemCommand.d.ts +100 -0
- package/dist-types/commands/UpdateQAppCommand.d.ts +216 -0
- package/dist-types/commands/UpdateQAppSessionCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +23 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +22 -0
- package/dist-types/models/QAppsServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2138 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListLibraryItemsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQAppsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +209 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/QApps.d.ts +396 -0
- package/dist-types/ts3.4/QAppsClient.d.ts +258 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/AssociateLibraryItemReviewCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/AssociateQAppWithUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateLibraryItemCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateQAppCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DeleteLibraryItemCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteQAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DisassociateLibraryItemReviewCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DisassociateQAppFromUserCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetLibraryItemCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetQAppCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/GetQAppSessionCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ImportDocumentCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListLibraryItemsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListQAppsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/PredictQAppCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/StartQAppSessionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StopQAppSessionCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateLibraryItemCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateQAppCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateQAppSessionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +23 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/QAppsServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +681 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListLibraryItemsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQAppsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +281 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +101 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListLibraryItemsCommandInput, ListLibraryItemsCommandOutput } from "../commands/ListLibraryItemsCommand";
|
|
3
|
+
import { QAppsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListLibraryItems: (config: QAppsPaginationConfiguration, input: ListLibraryItemsCommandInput, ...rest: any[]) => Paginator<ListLibraryItemsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListQAppsCommandInput, ListQAppsCommandOutput } from "../commands/ListQAppsCommand";
|
|
3
|
+
import { QAppsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListQApps: (config: QAppsPaginationConfiguration, input: ListQAppsCommandInput, ...rest: any[]) => Paginator<ListQAppsCommandOutput>;
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { AssociateLibraryItemReviewCommandInput, AssociateLibraryItemReviewCommandOutput } from "../commands/AssociateLibraryItemReviewCommand";
|
|
4
|
+
import { AssociateQAppWithUserCommandInput, AssociateQAppWithUserCommandOutput } from "../commands/AssociateQAppWithUserCommand";
|
|
5
|
+
import { CreateLibraryItemCommandInput, CreateLibraryItemCommandOutput } from "../commands/CreateLibraryItemCommand";
|
|
6
|
+
import { CreateQAppCommandInput, CreateQAppCommandOutput } from "../commands/CreateQAppCommand";
|
|
7
|
+
import { DeleteLibraryItemCommandInput, DeleteLibraryItemCommandOutput } from "../commands/DeleteLibraryItemCommand";
|
|
8
|
+
import { DeleteQAppCommandInput, DeleteQAppCommandOutput } from "../commands/DeleteQAppCommand";
|
|
9
|
+
import { DisassociateLibraryItemReviewCommandInput, DisassociateLibraryItemReviewCommandOutput } from "../commands/DisassociateLibraryItemReviewCommand";
|
|
10
|
+
import { DisassociateQAppFromUserCommandInput, DisassociateQAppFromUserCommandOutput } from "../commands/DisassociateQAppFromUserCommand";
|
|
11
|
+
import { GetLibraryItemCommandInput, GetLibraryItemCommandOutput } from "../commands/GetLibraryItemCommand";
|
|
12
|
+
import { GetQAppCommandInput, GetQAppCommandOutput } from "../commands/GetQAppCommand";
|
|
13
|
+
import { GetQAppSessionCommandInput, GetQAppSessionCommandOutput } from "../commands/GetQAppSessionCommand";
|
|
14
|
+
import { ImportDocumentCommandInput, ImportDocumentCommandOutput } from "../commands/ImportDocumentCommand";
|
|
15
|
+
import { ListLibraryItemsCommandInput, ListLibraryItemsCommandOutput } from "../commands/ListLibraryItemsCommand";
|
|
16
|
+
import { ListQAppsCommandInput, ListQAppsCommandOutput } from "../commands/ListQAppsCommand";
|
|
17
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
18
|
+
import { PredictQAppCommandInput, PredictQAppCommandOutput } from "../commands/PredictQAppCommand";
|
|
19
|
+
import { StartQAppSessionCommandInput, StartQAppSessionCommandOutput } from "../commands/StartQAppSessionCommand";
|
|
20
|
+
import { StopQAppSessionCommandInput, StopQAppSessionCommandOutput } from "../commands/StopQAppSessionCommand";
|
|
21
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
22
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
23
|
+
import { UpdateLibraryItemCommandInput, UpdateLibraryItemCommandOutput } from "../commands/UpdateLibraryItemCommand";
|
|
24
|
+
import { UpdateQAppCommandInput, UpdateQAppCommandOutput } from "../commands/UpdateQAppCommand";
|
|
25
|
+
import { UpdateQAppSessionCommandInput, UpdateQAppSessionCommandOutput } from "../commands/UpdateQAppSessionCommand";
|
|
26
|
+
/**
|
|
27
|
+
* serializeAws_restJson1AssociateLibraryItemReviewCommand
|
|
28
|
+
*/
|
|
29
|
+
export declare const se_AssociateLibraryItemReviewCommand: (input: AssociateLibraryItemReviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
/**
|
|
31
|
+
* serializeAws_restJson1AssociateQAppWithUserCommand
|
|
32
|
+
*/
|
|
33
|
+
export declare const se_AssociateQAppWithUserCommand: (input: AssociateQAppWithUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
/**
|
|
35
|
+
* serializeAws_restJson1CreateLibraryItemCommand
|
|
36
|
+
*/
|
|
37
|
+
export declare const se_CreateLibraryItemCommand: (input: CreateLibraryItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_restJson1CreateQAppCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_CreateQAppCommand: (input: CreateQAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_restJson1DeleteLibraryItemCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_DeleteLibraryItemCommand: (input: DeleteLibraryItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_restJson1DeleteQAppCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_DeleteQAppCommand: (input: DeleteQAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
/**
|
|
51
|
+
* serializeAws_restJson1DisassociateLibraryItemReviewCommand
|
|
52
|
+
*/
|
|
53
|
+
export declare const se_DisassociateLibraryItemReviewCommand: (input: DisassociateLibraryItemReviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_restJson1DisassociateQAppFromUserCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_DisassociateQAppFromUserCommand: (input: DisassociateQAppFromUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* serializeAws_restJson1GetLibraryItemCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const se_GetLibraryItemCommand: (input: GetLibraryItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* serializeAws_restJson1GetQAppCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const se_GetQAppCommand: (input: GetQAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
/**
|
|
67
|
+
* serializeAws_restJson1GetQAppSessionCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const se_GetQAppSessionCommand: (input: GetQAppSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_restJson1ImportDocumentCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_ImportDocumentCommand: (input: ImportDocumentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* serializeAws_restJson1ListLibraryItemsCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const se_ListLibraryItemsCommand: (input: ListLibraryItemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
/**
|
|
79
|
+
* serializeAws_restJson1ListQAppsCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const se_ListQAppsCommand: (input: ListQAppsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
+
/**
|
|
83
|
+
* serializeAws_restJson1ListTagsForResourceCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
+
/**
|
|
87
|
+
* serializeAws_restJson1PredictQAppCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const se_PredictQAppCommand: (input: PredictQAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
+
/**
|
|
91
|
+
* serializeAws_restJson1StartQAppSessionCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const se_StartQAppSessionCommand: (input: StartQAppSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
+
/**
|
|
95
|
+
* serializeAws_restJson1StopQAppSessionCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const se_StopQAppSessionCommand: (input: StopQAppSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
+
/**
|
|
99
|
+
* serializeAws_restJson1TagResourceCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
|
+
/**
|
|
103
|
+
* serializeAws_restJson1UntagResourceCommand
|
|
104
|
+
*/
|
|
105
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
+
/**
|
|
107
|
+
* serializeAws_restJson1UpdateLibraryItemCommand
|
|
108
|
+
*/
|
|
109
|
+
export declare const se_UpdateLibraryItemCommand: (input: UpdateLibraryItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
+
/**
|
|
111
|
+
* serializeAws_restJson1UpdateQAppCommand
|
|
112
|
+
*/
|
|
113
|
+
export declare const se_UpdateQAppCommand: (input: UpdateQAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
+
/**
|
|
115
|
+
* serializeAws_restJson1UpdateQAppSessionCommand
|
|
116
|
+
*/
|
|
117
|
+
export declare const se_UpdateQAppSessionCommand: (input: UpdateQAppSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
/**
|
|
119
|
+
* deserializeAws_restJson1AssociateLibraryItemReviewCommand
|
|
120
|
+
*/
|
|
121
|
+
export declare const de_AssociateLibraryItemReviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateLibraryItemReviewCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* deserializeAws_restJson1AssociateQAppWithUserCommand
|
|
124
|
+
*/
|
|
125
|
+
export declare const de_AssociateQAppWithUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateQAppWithUserCommandOutput>;
|
|
126
|
+
/**
|
|
127
|
+
* deserializeAws_restJson1CreateLibraryItemCommand
|
|
128
|
+
*/
|
|
129
|
+
export declare const de_CreateLibraryItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLibraryItemCommandOutput>;
|
|
130
|
+
/**
|
|
131
|
+
* deserializeAws_restJson1CreateQAppCommand
|
|
132
|
+
*/
|
|
133
|
+
export declare const de_CreateQAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQAppCommandOutput>;
|
|
134
|
+
/**
|
|
135
|
+
* deserializeAws_restJson1DeleteLibraryItemCommand
|
|
136
|
+
*/
|
|
137
|
+
export declare const de_DeleteLibraryItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLibraryItemCommandOutput>;
|
|
138
|
+
/**
|
|
139
|
+
* deserializeAws_restJson1DeleteQAppCommand
|
|
140
|
+
*/
|
|
141
|
+
export declare const de_DeleteQAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQAppCommandOutput>;
|
|
142
|
+
/**
|
|
143
|
+
* deserializeAws_restJson1DisassociateLibraryItemReviewCommand
|
|
144
|
+
*/
|
|
145
|
+
export declare const de_DisassociateLibraryItemReviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateLibraryItemReviewCommandOutput>;
|
|
146
|
+
/**
|
|
147
|
+
* deserializeAws_restJson1DisassociateQAppFromUserCommand
|
|
148
|
+
*/
|
|
149
|
+
export declare const de_DisassociateQAppFromUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateQAppFromUserCommandOutput>;
|
|
150
|
+
/**
|
|
151
|
+
* deserializeAws_restJson1GetLibraryItemCommand
|
|
152
|
+
*/
|
|
153
|
+
export declare const de_GetLibraryItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLibraryItemCommandOutput>;
|
|
154
|
+
/**
|
|
155
|
+
* deserializeAws_restJson1GetQAppCommand
|
|
156
|
+
*/
|
|
157
|
+
export declare const de_GetQAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQAppCommandOutput>;
|
|
158
|
+
/**
|
|
159
|
+
* deserializeAws_restJson1GetQAppSessionCommand
|
|
160
|
+
*/
|
|
161
|
+
export declare const de_GetQAppSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQAppSessionCommandOutput>;
|
|
162
|
+
/**
|
|
163
|
+
* deserializeAws_restJson1ImportDocumentCommand
|
|
164
|
+
*/
|
|
165
|
+
export declare const de_ImportDocumentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportDocumentCommandOutput>;
|
|
166
|
+
/**
|
|
167
|
+
* deserializeAws_restJson1ListLibraryItemsCommand
|
|
168
|
+
*/
|
|
169
|
+
export declare const de_ListLibraryItemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLibraryItemsCommandOutput>;
|
|
170
|
+
/**
|
|
171
|
+
* deserializeAws_restJson1ListQAppsCommand
|
|
172
|
+
*/
|
|
173
|
+
export declare const de_ListQAppsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQAppsCommandOutput>;
|
|
174
|
+
/**
|
|
175
|
+
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
176
|
+
*/
|
|
177
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
178
|
+
/**
|
|
179
|
+
* deserializeAws_restJson1PredictQAppCommand
|
|
180
|
+
*/
|
|
181
|
+
export declare const de_PredictQAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PredictQAppCommandOutput>;
|
|
182
|
+
/**
|
|
183
|
+
* deserializeAws_restJson1StartQAppSessionCommand
|
|
184
|
+
*/
|
|
185
|
+
export declare const de_StartQAppSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartQAppSessionCommandOutput>;
|
|
186
|
+
/**
|
|
187
|
+
* deserializeAws_restJson1StopQAppSessionCommand
|
|
188
|
+
*/
|
|
189
|
+
export declare const de_StopQAppSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopQAppSessionCommandOutput>;
|
|
190
|
+
/**
|
|
191
|
+
* deserializeAws_restJson1TagResourceCommand
|
|
192
|
+
*/
|
|
193
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
194
|
+
/**
|
|
195
|
+
* deserializeAws_restJson1UntagResourceCommand
|
|
196
|
+
*/
|
|
197
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
198
|
+
/**
|
|
199
|
+
* deserializeAws_restJson1UpdateLibraryItemCommand
|
|
200
|
+
*/
|
|
201
|
+
export declare const de_UpdateLibraryItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLibraryItemCommandOutput>;
|
|
202
|
+
/**
|
|
203
|
+
* deserializeAws_restJson1UpdateQAppCommand
|
|
204
|
+
*/
|
|
205
|
+
export declare const de_UpdateQAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQAppCommandOutput>;
|
|
206
|
+
/**
|
|
207
|
+
* deserializeAws_restJson1UpdateQAppSessionCommand
|
|
208
|
+
*/
|
|
209
|
+
export declare const de_UpdateQAppSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQAppSessionCommandOutput>;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { QAppsClientConfig } from "./QAppsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@smithy/types").Logger;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
33
|
+
}) => import("@smithy/types").EndpointV2;
|
|
34
|
+
tls?: boolean | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QAppsHttpAuthSchemeProvider;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
|
+
signingEscapePath?: boolean | undefined;
|
|
42
|
+
systemClockOffset?: number | undefined;
|
|
43
|
+
signingRegion?: string | undefined;
|
|
44
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { QAppsClientConfig } from "./QAppsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@smithy/types").Logger;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
33
|
+
}) => import("@smithy/types").EndpointV2;
|
|
34
|
+
tls?: boolean | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QAppsHttpAuthSchemeProvider;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
|
+
signingEscapePath?: boolean | undefined;
|
|
42
|
+
systemClockOffset?: number | undefined;
|
|
43
|
+
signingRegion?: string | undefined;
|
|
44
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { QAppsClientConfig } from "./QAppsClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
serviceId: string;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
22
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
24
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
logger: import("@smithy/types").Logger;
|
|
27
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
|
+
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
32
|
+
}) => import("@smithy/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QAppsHttpAuthSchemeProvider;
|
|
38
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
39
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
40
|
+
signingEscapePath?: boolean | undefined;
|
|
41
|
+
systemClockOffset?: number | undefined;
|
|
42
|
+
signingRegion?: string | undefined;
|
|
43
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
44
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { QAppsClientConfig } from "./QAppsClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
12
|
+
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QAppsHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
|
+
logger: import("@smithy/types").Logger;
|
|
17
|
+
serviceId: string;
|
|
18
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { QAppsExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configure(extensionConfiguration: QAppsExtensionConfiguration): void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface RuntimeExtensionsConfig {
|
|
12
|
+
extensions: RuntimeExtension[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|