smartbucket/ts/smartbucket.classes.smartbucket.ts
2019-10-14 20:55:25 +02:00

24 lines
429 B
TypeScript

import * as plugins from './smartbucket.plugins';
export interface ISmartBucketConfig {
provider: 'digitalocean';
projectId: string;
bucketName: string;
}
export class SmartBucket {
public config: ISmartBucketConfig;
/**
* the constructor of SmartBucket
*/
constructor(configArg: ISmartBucketConfig) {
this.config = configArg;
}
/**
* initializes the Smartbucket
*/
public async init() {}
}