Skip to content

Commit c9b8219

Browse files
committed
chore: eslint --fix protocol_tests/**/src/**/*.ts
1 parent 8d57941 commit c9b8219

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

protocol_tests/aws-ec2/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export * from "./EC2ProtocolClient";
21
export * from "./EC2Protocol";
2+
export * from "./EC2ProtocolClient";
33
export * from "./commands/EmptyInputAndEmptyOutputCommand";
44
export * from "./commands/EndpointOperationCommand";
55
export * from "./commands/EndpointWithHostLabelOperationCommand";

protocol_tests/aws-json-10/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export * from "./JSONRPC10Client";
21
export * from "./JSONRPC10";
2+
export * from "./JSONRPC10Client";
33
export * from "./commands/EmptyInputAndEmptyOutputCommand";
44
export * from "./commands/EndpointOperationCommand";
55
export * from "./commands/EndpointWithHostLabelOperationCommand";

protocol_tests/aws-json/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export * from "./JsonProtocolClient";
21
export * from "./JsonProtocol";
2+
export * from "./JsonProtocolClient";
33
export * from "./commands/EmptyOperationCommand";
44
export * from "./commands/EndpointOperationCommand";
55
export * from "./commands/EndpointWithHostLabelOperationCommand";

protocol_tests/aws-query/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export * from "./QueryProtocolClient";
21
export * from "./QueryProtocol";
2+
export * from "./QueryProtocolClient";
33
export * from "./commands/EmptyInputAndEmptyOutputCommand";
44
export * from "./commands/EndpointOperationCommand";
55
export * from "./commands/EndpointWithHostLabelOperationCommand";

protocol_tests/aws-restjson/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
export * from "./RestJsonProtocolClient";
21
export * from "./RestJsonProtocol";
2+
export * from "./RestJsonProtocolClient";
33
export * from "./commands/AllQueryStringTypesCommand";
44
export * from "./commands/ConstantAndVariableQueryStringCommand";
55
export * from "./commands/ConstantQueryStringCommand";
6-
export * from "./commands/DocumentTypeCommand";
76
export * from "./commands/DocumentTypeAsPayloadCommand";
7+
export * from "./commands/DocumentTypeCommand";
88
export * from "./commands/EmptyInputAndEmptyOutputCommand";
99
export * from "./commands/EndpointOperationCommand";
1010
export * from "./commands/EndpointWithHostLabelOperationCommand";
@@ -19,8 +19,8 @@ export * from "./commands/HttpPrefixHeadersCommand";
1919
export * from "./commands/HttpPrefixHeadersResponseCommand";
2020
export * from "./commands/HttpRequestWithFloatLabelsCommand";
2121
export * from "./commands/HttpRequestWithGreedyLabelInPathCommand";
22-
export * from "./commands/HttpRequestWithLabelsCommand";
2322
export * from "./commands/HttpRequestWithLabelsAndTimestampFormatCommand";
23+
export * from "./commands/HttpRequestWithLabelsCommand";
2424
export * from "./commands/HttpResponseCodeCommand";
2525
export * from "./commands/HttpStringPayloadCommand";
2626
export * from "./commands/IgnoreQueryParamsInResponseCommand";
@@ -39,8 +39,8 @@ export * from "./commands/MalformedBooleanCommand";
3939
export * from "./commands/MalformedByteCommand";
4040
export * from "./commands/MalformedContentTypeWithBodyCommand";
4141
export * from "./commands/MalformedContentTypeWithGenericStringCommand";
42-
export * from "./commands/MalformedContentTypeWithoutBodyCommand";
4342
export * from "./commands/MalformedContentTypeWithPayloadCommand";
43+
export * from "./commands/MalformedContentTypeWithoutBodyCommand";
4444
export * from "./commands/MalformedDoubleCommand";
4545
export * from "./commands/MalformedFloatCommand";
4646
export * from "./commands/MalformedIntegerCommand";

protocol_tests/aws-restxml/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export * from "./RestXmlProtocolClient";
21
export * from "./RestXmlProtocol";
2+
export * from "./RestXmlProtocolClient";
33
export * from "./commands/AllQueryStringTypesCommand";
44
export * from "./commands/BodyWithXmlNameCommand";
55
export * from "./commands/ConstantAndVariableQueryStringCommand";
@@ -17,13 +17,13 @@ export * from "./commands/HttpPayloadTraitsWithMediaTypeCommand";
1717
export * from "./commands/HttpPayloadWithMemberXmlNameCommand";
1818
export * from "./commands/HttpPayloadWithStructureCommand";
1919
export * from "./commands/HttpPayloadWithXmlNameCommand";
20-
export * from "./commands/HttpPayloadWithXmlNamespaceCommand";
2120
export * from "./commands/HttpPayloadWithXmlNamespaceAndPrefixCommand";
21+
export * from "./commands/HttpPayloadWithXmlNamespaceCommand";
2222
export * from "./commands/HttpPrefixHeadersCommand";
2323
export * from "./commands/HttpRequestWithFloatLabelsCommand";
2424
export * from "./commands/HttpRequestWithGreedyLabelInPathCommand";
25-
export * from "./commands/HttpRequestWithLabelsCommand";
2625
export * from "./commands/HttpRequestWithLabelsAndTimestampFormatCommand";
26+
export * from "./commands/HttpRequestWithLabelsCommand";
2727
export * from "./commands/HttpResponseCodeCommand";
2828
export * from "./commands/IgnoreQueryParamsInResponseCommand";
2929
export * from "./commands/InputAndOutputWithHeadersCommand";

0 commit comments

Comments
 (0)