UNPKG

@fnt-eve/esi-client-typescript

Version:

[![npm version](https://img.shields.io/npm/v/@fnt-eve/esi-client-typescript)](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)

48 lines 2.26 kB
/** * EVE Swagger Interface * An OpenAPI for EVE Online * * The version of the OpenAPI document: 1.33 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { GetFwLeaderboardsActiveTotalActiveTotal } from './GetFwLeaderboardsActiveTotalActiveTotal'; import type { GetFwLeaderboardsYesterdayYesterday } from './GetFwLeaderboardsYesterdayYesterday'; import type { GetFwLeaderboardsLastWeekLastWeek } from './GetFwLeaderboardsLastWeekLastWeek'; /** * Top 4 rankings of factions by number of kills from yesterday, last week and in total * @export * @interface GetFwLeaderboardsKills */ export interface GetFwLeaderboardsKills { /** * Top 4 ranking of factions active in faction warfare by total kills. A faction is considered "active" if they have participated in faction warfare in the past 14 days * @type {Array<GetFwLeaderboardsActiveTotalActiveTotal>} * @memberof GetFwLeaderboardsKills */ activeTotal: Array<GetFwLeaderboardsActiveTotalActiveTotal>; /** * Top 4 ranking of factions by kills in the past week * @type {Array<GetFwLeaderboardsLastWeekLastWeek>} * @memberof GetFwLeaderboardsKills */ lastWeek: Array<GetFwLeaderboardsLastWeekLastWeek>; /** * Top 4 ranking of factions by kills in the past day * @type {Array<GetFwLeaderboardsYesterdayYesterday>} * @memberof GetFwLeaderboardsKills */ yesterday: Array<GetFwLeaderboardsYesterdayYesterday>; } /** * Check if a given object implements the GetFwLeaderboardsKills interface. */ export declare function instanceOfGetFwLeaderboardsKills(value: object): value is GetFwLeaderboardsKills; export declare function GetFwLeaderboardsKillsFromJSON(json: any): GetFwLeaderboardsKills; export declare function GetFwLeaderboardsKillsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFwLeaderboardsKills; export declare function GetFwLeaderboardsKillsToJSON(json: any): GetFwLeaderboardsKills; export declare function GetFwLeaderboardsKillsToJSONTyped(value?: GetFwLeaderboardsKills | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetFwLeaderboardsKills.d.ts.map