10 lines
379 B
TypeScript
10 lines
379 B
TypeScript
import { OnModuleInit } from '@nestjs/common';
|
|
import { AuthService } from './auth.service';
|
|
import { ConfigService } from '@nestjs/config';
|
|
export declare class AuthModule implements OnModuleInit {
|
|
private readonly authService;
|
|
private readonly configService;
|
|
constructor(authService: AuthService, configService: ConfigService);
|
|
onModuleInit(): Promise<void>;
|
|
}
|