@zeplin/sdk
Version:
Zeplin API client for JavaScript
21 lines (20 loc) • 992 B
TypeScript
/**
* 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 { ProjectNoteCommentReactionCreatedEvent } from './project-note-comment-reaction-created-event';
import { ProjectNoteCommentReactionDeletedEvent } from './project-note-comment-reaction-deleted-event';
export declare const transformJSONToProjectNoteCommentReactionEvent: (value: any) => ProjectNoteCommentReactionEvent;
export declare const transformProjectNoteCommentReactionEventToJSON: (value: ProjectNoteCommentReactionEvent) => any;
/**
* @type ProjectNoteCommentReactionEvent
* This event is used to notify webhooks about reactions to comments in notes in Zeplin projects.
* @export
*/
export declare type ProjectNoteCommentReactionEvent = ProjectNoteCommentReactionCreatedEvent | ProjectNoteCommentReactionDeletedEvent;