UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

41 lines 1.26 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface FeedPostStats */ export interface FeedPostStats { /** * * @type {{ [key: string]: number; }} * @memberof FeedPostStats */ reacts?: { [key: string]: number; }; /** * * @type {number} * @memberof FeedPostStats */ commentCount?: number; } /** * Check if a given object implements the FeedPostStats interface. */ export declare function instanceOfFeedPostStats(value: object): value is FeedPostStats; export declare function FeedPostStatsFromJSON(json: any): FeedPostStats; export declare function FeedPostStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeedPostStats; export declare function FeedPostStatsToJSON(json: any): FeedPostStats; export declare function FeedPostStatsToJSONTyped(value?: FeedPostStats | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FeedPostStats.d.ts.map