Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1import { type ApiKeyServicePg } from './apiKeyService/dbTypes.js';
2import { type CoreAppTablesPg } from './coreAppTables.js';
3import { type ModerationConfigServicePg } from './moderationConfigService/dbTypes.js';
4import { type SigningKeyPairServicePg } from './signingKeyPairService/dbTypes.js';
5import { type UserManagementPg } from './userManagementService/dbTypes.js';
6
7export type CombinedPg = ModerationConfigServicePg &
8 ApiKeyServicePg &
9 SigningKeyPairServicePg &
10 UserManagementPg &
11 CoreAppTablesPg;