Barazo AppView backend
barazo.forum
1/**
2 * Type declarations for @barazo/multi-tenant (private npm package).
3 * This package is only required when COMMUNITY_MODE=multi.
4 */
5declare module '@barazo/multi-tenant' {
6 import type { CommunityResolver } from '../middleware/community-resolver.js'
7 import type { Database } from '../db/index.js'
8 import type { Cache } from '../cache/index.js'
9
10 export function createMultiResolver(db: Database, cache: Cache): CommunityResolver
11}