Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

7
dist/core/services/token.service.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import { AuthToken } from '../entities/token.entity';
export declare class TokenService {
private tokens;
createToken(name?: string, expiresInHours?: number): AuthToken;
validate(tokenString: string): AuthToken | null;
}
//# sourceMappingURL=token.service.d.ts.map