10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
import type { StorageBackendOptions } from '../src/storage/backend-config.js';
|
|
declare let AWS_SETTING: undefined | StorageBackendOptions;
|
|
declare const OBS_SETTING: {
|
|
ACCESS_KEY_ID: string;
|
|
BUCKET: string;
|
|
SECRET_ACCESS_KEY: string;
|
|
SERVER: string;
|
|
};
|
|
export { AWS_SETTING, OBS_SETTING, };
|
|
//# sourceMappingURL=fixtures.d.ts.map
|