(
storageClass: Constructor<T>,
idOrName?: string,
client?: StorageClient,
config = Configuration.getGlobalConfig(),
)
| 35 | } |
| 36 | |
| 37 | static async openStorage<T extends IStorage>( |
| 38 | storageClass: Constructor<T>, |
| 39 | idOrName?: string, |
| 40 | client?: StorageClient, |
| 41 | config = Configuration.getGlobalConfig(), |
| 42 | ): Promise<T> { |
| 43 | return this.getManager(storageClass, config).openStorage(idOrName, client); |
| 44 | } |
| 45 | |
| 46 | static getManager<T extends IStorage>( |
| 47 | storageClass: Constructor<T>, |
no test coverage detected