1fdc87f7f4
- Created Mode1 as self-contained test environment - Added auth-module copy with self-contained configuration - Implemented backend server with Graph token and PocketBase validation endpoints - Added frontend test dashboard with token comparison functionality - Fixed TypeScript compatibility issues (replaced import.meta.dir with __dirname) - Implemented actual PB token validation in comparison endpoint (no placeholders) - All endpoints tested and working with real tokens
4 lines
218 B
TypeScript
4 lines
218 B
TypeScript
// Frontend entry point - exports auth module for browser
|
|
export { PocketBaseAuth, initPocketBaseAuth } from '../auth-module/frontend';
|
|
export type { AuthConfig, AuthState, AuthCallbacks } from '../auth-module/types';
|