first commit
This commit is contained in:
10
dist/auth/auth.service.d.ts
vendored
Normal file
10
dist/auth/auth.service.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { JwtService } from '@nestjs/jwt';
|
||||
import { ConfigService } from '@nestjs/config';
|
||||
export declare class AuthService {
|
||||
private jwtService;
|
||||
private configService;
|
||||
constructor(jwtService: JwtService, configService: ConfigService);
|
||||
login(password: string): Promise<{
|
||||
accessToken: string;
|
||||
}>;
|
||||
}
|
||||
Reference in New Issue
Block a user