Front-End Backend API
Last modified by Manuel Leduc on 2026/02/05 17:22
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;
}