Files
psp_api/src/modules/application/config/dto/config-response.dto.ts
T

5 lines
238 B
TypeScript
Raw Normal View History

import type { ConfigService } from '../config.service'
export type ConfigServiceCreateResponseDto = Awaited<ReturnType<ConfigService['create']>>
export type ConfigServiceFindOneResponseDto = Awaited<ReturnType<ConfigService['findOne']>>