/
leenely
/
sl-backend
Обзор
Документация
Войти
/
leenely
/
sl-backend
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
task
dist/auth/auth.controller.d.ts
13 строк
506 B
leenely
chore: add initial dist
08 апр 2025, 18:37
08 апр 2025, 18:37
45d1672
Код
Авторство
О чём код?
import { Response } from 'express'; import { AuthService } from './auth.service'; import { AuthResponseDto } from './dto/auth-response.dto'; import { AuthDto } from './dto/auth.dto'; export declare class AuthController { private readonly authService; constructor(authService: AuthService); register(res: Response, dto: AuthDto): Promise<AuthResponseDto>; login(res: Response, dto: AuthDto): Promise<AuthResponseDto>; logout(res: Response): Promise<{ success: boolean; }>; }