import { ConfigService } from '@metad/server-config'; import { CommandBus } from '@nestjs/cqrs'; import { UserService } from './user/user.service'; export declare class AppService { private readonly commandBus; private readonly userService; private readonly configService; count: number; /** * Seed DB if no users exists (for simplicity and safety we only re-seed DB if no users found) * TODO: this should actually include more checks, e.g. if schema migrated and many other things */ seedDBIfEmpty(): Promise; constructor(commandBus: CommandBus, userService: UserService, configService: ConfigService); excuteDemoSeed(): Promise; }