Monorepo containing core modules of Zeichen.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 řádky
353 B

  1. import { Plugin } from '../core/plugin'
  2. import Storage from './Storage'
  3. type PluginConfig = {
  4. baseUrl: string,
  5. }
  6. const RemoteStoragePlugin: Plugin<PluginConfig> = config => ({
  7. currentUserId,
  8. }) => {
  9. new Storage(currentUserId, config.baseUrl, 'notes')
  10. new Storage(currentUserId, config.baseUrl, 'folders')
  11. }
  12. export default RemoteStoragePlugin