UNPKG

@mineru98/n8n-ko

Version:

n8n Workflow Automation Tool - Korean Version

13 lines (12 loc) 840 B
import { CreateOrUpdateTagRequestDto, RetrieveTagQueryDto } from '@n8n/api-types'; import { Response } from 'express'; import { AuthenticatedRequest } from '../requests'; import { TagService } from '../services/tag.service'; export declare class TagsController { private readonly tagService; constructor(tagService: TagService); getAll(_req: AuthenticatedRequest, _res: Response, query: RetrieveTagQueryDto): Promise<import("@n8n/db").TagEntity[]>; createTag(_req: AuthenticatedRequest, _res: Response, payload: CreateOrUpdateTagRequestDto): Promise<import("@n8n/db").TagEntity>; updateTag(_req: AuthenticatedRequest, _res: Response, tagId: string, payload: CreateOrUpdateTagRequestDto): Promise<import("@n8n/db").TagEntity>; deleteTag(_req: AuthenticatedRequest, _res: Response, tagId: string): Promise<boolean>; }