Skip to content

Commit

Permalink
internal, filesystem to undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
miaawong committed Jul 12, 2024
1 parent 3fd1b58 commit e0518c4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions web/src/components/snapshots/SnapshotStorageDestination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ type AWSStoreProvider = {
other?: undefined;
path?: string;
bucket?: string;
internal?: boolean;
fileSystem?: string;
internal?: undefined;
fileSystem?: undefined;
};

type GCPStoreProvider = {
Expand All @@ -118,8 +118,8 @@ type GCPStoreProvider = {
azure?: undefined;
other?: undefined;
path?: undefined;
internal?: boolean;
fileSystem?: string;
internal?: undefined;
fileSystem?: undefined;
};

type AzureStoreProvider = {
Expand All @@ -137,8 +137,8 @@ type AzureStoreProvider = {
gcp?: undefined;
other?: undefined;
path?: undefined;
internal?: boolean;
fileSystem?: string;
internal?: undefined;
fileSystem?: undefined;
};

type OtherStoreProvider = {
Expand All @@ -154,8 +154,8 @@ type OtherStoreProvider = {
gcp?: undefined;
azure?: undefined;
path?: undefined;
internal?: boolean;
fileSystem?: string;
internal?: undefined;
fileSystem?: undefined;
};

type StoreMetadata = {
Expand All @@ -164,8 +164,8 @@ type StoreMetadata = {
azure?: undefined;
other?: undefined;
bucket?: string;
internal?: boolean;
fileSystem?: string;
internal?: undefined;
fileSystem?: undefined;
path?: string;
};

Expand Down

0 comments on commit e0518c4

Please sign in to comment.