Configure remote database connection and update documentation
This commit is contained in:
14
backend/dist/modules/auth/auth.resolver.d.ts
vendored
Normal file
14
backend/dist/modules/auth/auth.resolver.d.ts
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
import { AuthService } from './auth.service';
|
||||
import { User } from '../users/entities/user.entity';
|
||||
export declare class AuthResolver {
|
||||
private authService;
|
||||
constructor(authService: AuthService);
|
||||
login(username: string, password: string): Promise<{
|
||||
access_token: string;
|
||||
user: User;
|
||||
}>;
|
||||
register(username: string, email: string, password: string): Promise<{
|
||||
access_token: string;
|
||||
user: User;
|
||||
}>;
|
||||
}
|
Reference in New Issue
Block a user