Files
gridpilot.gg/core/identity/application/dto/AuthCallbackCommandDTO.ts
2025-12-15 13:46:07 +01:00

8 lines
185 B
TypeScript

import type { AuthProviderDTO } from './AuthProviderDTO';
export interface AuthCallbackCommandDTO {
provider: AuthProviderDTO;
code: string;
state: string;
returnTo?: string;
}