Monorepo containing core modules of Zeichen.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

16 wiersze
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