first commit
This commit is contained in:
13
dist/auth/auth.controller.d.ts
vendored
Normal file
13
dist/auth/auth.controller.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { AuthService } from './auth.service';
|
||||
export declare class AuthController {
|
||||
private readonly authService;
|
||||
constructor(authService: AuthService);
|
||||
login(body: {
|
||||
password: string;
|
||||
}): Promise<{
|
||||
accessToken: string;
|
||||
}>;
|
||||
logout(): Promise<{
|
||||
success: boolean;
|
||||
}>;
|
||||
}
|
||||
Reference in New Issue
Block a user