mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-20 09:43:57 +00:00
20 lines
252 B
TypeScript
20 lines
252 B
TypeScript
export interface APILogo {
|
|
id: string;
|
|
gdrive_direct_url: string;
|
|
}
|
|
|
|
export interface LogoAPIResponse {
|
|
[key: string]: {
|
|
logos: APILogo[];
|
|
};
|
|
}
|
|
|
|
export interface Logo {
|
|
name: string;
|
|
variants: APILogo[];
|
|
}
|
|
|
|
// export interface Selected {
|
|
|
|
// }
|