/ types / auth.ts
auth.ts
 1  // Contains all authentication-related types
 2  
 3  export interface AniListAuthData {
 4    accessToken: string;
 5    expiresAt: number;
 6    lastUpdated: number;
 7  }
 8  
 9  export interface AnilistManga {
10    id: number;
11    title: {
12      romaji: string;
13      english: string;
14      native: string;
15    };
16  }