chore(cleanup): remove dead code and add android build to gitignore

This commit is contained in:
plebeius
2026-02-24 15:15:38 +08:00
parent b5d9db8a66
commit 5bd1dc0e71
11 changed files with 8 additions and 275 deletions
-14
View File
@@ -29,17 +29,3 @@ export interface ProviderAttempt {
/** Selectors tried (e.g. when file input / submit not found); from plugin or parsed from error */
matchedSelectors?: string[];
}
/** Successful upload result */
export interface ProviderSuccess {
provider: ProviderId;
url: string;
fileName: string;
attempts?: ProviderAttempt[];
}
/** Aggregate error when all providers fail */
export interface ProviderAggregateError {
attempts: ProviderAttempt[];
message: string;
}