import { Component, Request } from '@pjblog/http'; import { ArticleDBO } from '../dbos/article'; import type { EntityManager } from 'typeorm'; export declare class _DelArticleController extends Component { readonly manager: EntityManager; readonly service: ArticleDBO; readonly tagService: TagDBO; constructor(req: Request); checkID(): Promise; deleteTags(): Promise; deleteArticle(): Promise; updateCategoryCache(): Promise; delDraft(): void; } import { TagDBO } from '../../tags/dbos/tags'; import { BlogArticleEntity } from '../entities/article';