UNPKG

google-oauth-cli-generator

Version:

CLI tool to quickly set up Google OAuth authentication for hackathons and projects

20 lines 542 B
export interface AuthConfig { clientId: string; clientSecret: string; redirectUri: string; frontend: 'react' | 'next' | 'vanilla'; backend: 'express' | 'fastify'; database: 'mongodb' | 'postgresql' | 'none'; projectName: string; } export interface TemplateData { config: AuthConfig; projectPath: string; } export interface DatabaseConfig { type: 'mongodb' | 'postgresql' | 'none'; connectionString?: string; tableName?: string; collectionName?: string; } //# sourceMappingURL=types.d.ts.map