import { TagPayload } from '../../entity/tag/tagPayload'; import { ZeniAPIResponse } from '../../responsePayload'; interface FetchTagListPayload { tags: TagPayload[]; } export type FetchTagListResponse = ZeniAPIResponse; export {};