@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
10 lines (9 loc) • 645 B
TypeScript
import type { GetCampaignStats } from './GetCampaignStats.js';
export interface GetExtendedListAllOfCampaignStats {
campaignId: number;
stats: GetCampaignStats;
}
export declare function instanceOfGetExtendedListAllOfCampaignStats(value: object): boolean;
export declare function GetExtendedListAllOfCampaignStatsFromJSON(json: any): GetExtendedListAllOfCampaignStats;
export declare function GetExtendedListAllOfCampaignStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetExtendedListAllOfCampaignStats;
export declare function GetExtendedListAllOfCampaignStatsToJSON(value?: GetExtendedListAllOfCampaignStats | null): any;