Front-End Backend API

Version 7.1 by Manuel Leduc on 2025/12/01 14:51

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;
}

Get Connected