11 lines
325 B
TypeScript
11 lines
325 B
TypeScript
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;
|
|
}>;
|
|
}
|