6 lines
234 B
TypeScript
6 lines
234 B
TypeScript
export declare class AuthService {
|
|
private readonly jwtSecret;
|
|
sign(payload: Record<string, any>, expiresIn?: string): string;
|
|
verify(token: string): Record<string, any> | null;
|
|
}
|
|
//# sourceMappingURL=auth.service.d.ts.map
|