Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 514 B view raw
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;