mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-16 01:31:19 +10:00
feat: rework developer/publisher system
This commit is contained in:
@ -3,9 +3,8 @@ import type { MetadataProvider } from ".";
|
||||
import type {
|
||||
_FetchGameMetadataParams,
|
||||
GameMetadata,
|
||||
_FetchPublisherMetadataParams,
|
||||
_FetchCompanyMetadataParams,
|
||||
CompanyMetadata,
|
||||
_FetchDeveloperMetadataParams,
|
||||
} from "./types";
|
||||
import * as jdenticon from "jdenticon";
|
||||
|
||||
@ -43,13 +42,8 @@ export class ManualMetadataProvider implements MetadataProvider {
|
||||
images: [iconId],
|
||||
};
|
||||
}
|
||||
async fetchPublisher(
|
||||
_params: _FetchPublisherMetadataParams,
|
||||
): Promise<CompanyMetadata> {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
async fetchDeveloper(
|
||||
_params: _FetchDeveloperMetadataParams,
|
||||
async fetchCompany(
|
||||
_params: _FetchCompanyMetadataParams,
|
||||
): Promise<CompanyMetadata> {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user