Skip to content

Commit f5b89a6

Browse files
committed
chore: formatting
1 parent 5f6789b commit f5b89a6

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

packages/smithy-client/src/command.spec.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ describe(Command.name, () => {
1212
optional?: string;
1313
};
1414

15-
class WithRequiredInputCommand extends Command.classBuilder<RequiredInput, any, any, any, any>()
16-
.build() {}
15+
class WithRequiredInputCommand extends Command.classBuilder<RequiredInput, any, any, any, any>().build() {}
1716

18-
class WithOptionalInputCommand extends Command.classBuilder<OptionalInput, any, any, any, any>()
19-
.build() {}
17+
class WithOptionalInputCommand extends Command.classBuilder<OptionalInput, any, any, any, any>().build() {}
2018

2119
new WithRequiredInputCommand({ key: "1" });
2220

packages/types/src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,4 +188,4 @@ export interface RetryStrategy {
188188
* Indicates the parameter may be omitted if the parameter object T
189189
* is equivalent to a Partial<T>, i.e. all properties optional.
190190
*/
191-
export type OptionalParameter<T> = Exact<Partial<T>, T> extends true ? [] | [T] : [T]
191+
export type OptionalParameter<T> = Exact<Partial<T>, T> extends true ? [] | [T] : [T];

0 commit comments

Comments
 (0)