UNPKG

@zeplin/sdk

Version:
22 lines (21 loc) 1.02 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 { ProjectNoteCommentCreatedEvent } from './project-note-comment-created-event'; import { ProjectNoteCommentDeletedEvent } from './project-note-comment-deleted-event'; import { ProjectNoteCommentUpdatedEvent } from './project-note-comment-updated-event'; export declare const transformJSONToProjectNoteCommentEvent: (value: any) => ProjectNoteCommentEvent; export declare const transformProjectNoteCommentEventToJSON: (value: ProjectNoteCommentEvent) => any; /** * @type ProjectNoteCommentEvent * This event is used to notify webhooks about changes related to the comments in notes in Zeplin projects. * @export */ export declare type ProjectNoteCommentEvent = ProjectNoteCommentCreatedEvent | ProjectNoteCommentDeletedEvent | ProjectNoteCommentUpdatedEvent;