13 lines
		
	
	
	
		
			206 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			206 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { User } from "~/lib/api/user";
 | 
						|
 | 
						|
export type AuthResponse = {
 | 
						|
	user: User;
 | 
						|
	token: string;
 | 
						|
	expires_at: string;
 | 
						|
};
 | 
						|
 | 
						|
export type AuthUrls = {
 | 
						|
	discord?: string;
 | 
						|
	google?: string;
 | 
						|
	tumblr?: string;
 | 
						|
};
 |