UNPKG

@zeplin/sdk

Version:
48 lines (47 loc) 1.34 kB
/** * 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 { Project } from './project'; import { Screen } from './screen'; import { ScreenNote } from './screen-note'; import { ScreenNoteComment } from './screen-note-comment'; export declare const transformProjectNoteCommentReactionEventContextToJSON: (value: ProjectNoteCommentReactionEventContext) => any; export declare const transformJSONToProjectNoteCommentReactionEventContext: (value: any) => ProjectNoteCommentReactionEventContext; /** * * @export * @interface ProjectNoteCommentReactionEventContext */ export interface ProjectNoteCommentReactionEventContext { /** * * @type {Project} * @memberof ProjectNoteCommentReactionEventContext */ project: Project; /** * * @type {Screen} * @memberof ProjectNoteCommentReactionEventContext */ screen: Screen; /** * * @type {ScreenNote} * @memberof ProjectNoteCommentReactionEventContext */ note: ScreenNote; /** * * @type {ScreenNoteComment} * @memberof ProjectNoteCommentReactionEventContext */ comment: ScreenNoteComment; }