manifest
Version:
The backend for AI code editors
9 lines (8 loc) • 359 B
TypeScript
import { ManifestService } from '../../manifest/services/manifest.service';
import { EntityService } from '../../entity/services/entity.service';
export declare class DatabaseService {
private manifestService;
private entityService;
constructor(manifestService: ManifestService, entityService: EntityService);
isDbEmpty(): Promise<boolean>;
}