7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
|
|
export interface IPlatformObjectStorageBindingConfig {
|
||
|
|
bucketName?: string;
|
||
|
|
region?: string;
|
||
|
|
publicRead?: boolean;
|
||
|
|
versioning?: boolean;
|
||
|
|
}
|