//interface to follow the behaviour of an object
export interface IOAuthConfig {
  clientId: string;
  clientSecret: string;
  redirectUri: string;
  createUser: (userData: any) => Promise<any>;
  findUserById: (providerId: string) => Promise<any>;
}
