Backend - API
Last modified by Manuel Leduc on 2024/12/30 15:56
User
N/A
Admins
N/A
Developers
Storage Provider
import type { Storage } from "@xwiki/cristal-api";
/**
* Resolves a {@link Storage} based on the current configuration.
* @since 0.13
*/
export interface StorageProvider {
/**
* @returns a {@link Storage} based on the current configuration
*/
get(): Storage;
}
/**
* Resolves a {@link Storage} based on the current configuration.
* @since 0.13
*/
export interface StorageProvider {
/**
* @returns a {@link Storage} based on the current configuration
*/
get(): Storage;
}