export interface APIsResponse { result: boolean; provider: string; redirect_url: string; return_url: string; } export interface SSOTokenResponse { result: boolean; provider: string; email: string; token: string; } export type SSOTokenParams = { state: string; code: string; scope: string; authuser: string; hd: string; prompt: string; }; export type ApiKey = { id: string; memo: string; created: Date; api_key: string; };