/** * Audius API * * The version of the OpenAPI document: 1.0 * * * 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 { Reaction } from './Reaction'; /** * * @export * @interface Reactions */ export interface Reactions { /** * * @type {Array} * @memberof Reactions */ data?: Array; } /** * Check if a given object implements the Reactions interface. */ export declare function instanceOfReactions(value: object): value is Reactions; export declare function ReactionsFromJSON(json: any): Reactions; export declare function ReactionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Reactions; export declare function ReactionsToJSON(value?: Reactions | null): any;