m
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
import { ApiAuthService } from '../service/api-auth.service';
|
||||
import { LoginDto, RegisterDto } from '../dto/auth.dto';
|
||||
export declare class AuthController {
|
||||
private readonly apiAuthService;
|
||||
constructor(apiAuthService: ApiAuthService);
|
||||
login(loginDto: LoginDto): Promise<import("src/app/common/api").ApiResponseVo<null> | import("src/app/common/api").ApiResponseVo<{
|
||||
token: string;
|
||||
} | undefined>>;
|
||||
register(registerDto: RegisterDto): Promise<import("src/app/common/api").ApiResponseVo<null> | import("src/app/common/api").ApiResponseVo<{
|
||||
token: string;
|
||||
} | undefined>>;
|
||||
}
|
||||
Reference in New Issue
Block a user