Skip to content

Commit

Permalink
chore: make EbsDeviceProps not extend EbsDeviceOptionsBase, which is …
Browse files Browse the repository at this point in the history
…superfluous (#3643)

Because EbsDeviceSnapshotOptions, which EbsDeviceProps also extends,
already extends EbsDeviceOptionsBase.
  • Loading branch information
skinny85 authored Aug 13, 2019
1 parent 91af473 commit 7decdcb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ export interface EbsDeviceSnapshotOptions extends EbsDeviceOptionsBase {
readonly volumeSize?: number;
}

export interface EbsDeviceProps extends EbsDeviceOptionsBase, EbsDeviceSnapshotOptions {
export interface EbsDeviceProps extends EbsDeviceSnapshotOptions {
readonly snapshotId?: string;
}

Expand Down

0 comments on commit 7decdcb

Please sign in to comment.