/** * Zeplin API * Access your resources in Zeplin * * Contact: support@zeplin.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { User } from './user'; export declare const transformReactionToJSON: (value: Reaction) => any; export declare const transformJSONToReaction: (value: any) => Reaction; /** * * @export * @interface Reaction */ export interface Reaction { /** * Unique id of the reaction * @type {string} * @memberof Reaction */ id: string; /** * Type of the reaction (e.g., thumbsup, eyes, etc.) * @type {string} * @memberof Reaction */ shortCode: string; /** * Unicode representation of the reaction * @type {string} * @memberof Reaction */ unicode?: string; /** * * @type {Array} * @memberof Reaction */ users: Array; }