UNPKG

@zeplin/sdk

Version:
39 lines (38 loc) 1.1 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 { ScreenNoteComment } from './screen-note-comment'; export declare const transformProjectNoteCommentCreatedEventResourceToJSON: (value: ProjectNoteCommentCreatedEventResource) => any; export declare const transformJSONToProjectNoteCommentCreatedEventResource: (value: any) => ProjectNoteCommentCreatedEventResource; /** * * @export * @interface ProjectNoteCommentCreatedEventResource */ export interface ProjectNoteCommentCreatedEventResource { /** * * @type {string} * @memberof ProjectNoteCommentCreatedEventResource */ id: string; /** * * @type {string} * @memberof ProjectNoteCommentCreatedEventResource */ type: 'ScreenNoteComment'; /** * * @type {ScreenNoteComment} * @memberof ProjectNoteCommentCreatedEventResource */ data: ScreenNoteComment; }