igdb-ts
Version:
Unofficial IGDB API TypeScript wrapper.
43 lines (42 loc) • 1.04 kB
TypeScript
import { Identifiable } from "../utility";
export interface CompanyWebsite extends Identifiable {
category: CompanyWebsiteCategory;
trusted: boolean;
url: string;
}
export declare enum CompanyWebsiteCategory {
"official" = 1,
"wikia" = 2,
"wikipedia" = 3,
"facebook" = 4,
"twitter" = 5,
"twitch" = 6,
"instagram" = 7,
"youtube" = 8,
"iphone" = 9,
"ipad" = 10,
"android" = 11,
"steam" = 12,
"reddit" = 13,
"itch" = 14,
"epicgames" = 15,
"gog" = 16,
"discord" = 17
}
export declare enum CompanyWebsiteFields {
"ID" = "id",
"CHECKSUM" = "checksum",
"CATEGORY" = "category",
"TRUSTED" = "trusted",
"URL" = "url"
}
/**
* Referenced from [Company]({@link Company.ts}) - websites field
*/
export declare enum CompanyWebsiteReferenceFields {
"ID" = "websites.id",
"CHECKSUM" = "websites.checksum",
"CATEGORY" = "websites.category",
"TRUSTED" = "websites.trusted",
"URL" = "websites.url"
}