Backend API
Version 5.1 by Manuel Leduc on 2025/12/01 14:32
Content
Reference
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;
}