@zeplin/sdk
Version:
Zeplin API client for JavaScript
41 lines (40 loc) • 1.07 kB
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 { Project } from './project';
import { Screen } from './screen';
import { ScreenNote } from './screen-note';
export declare const transformProjectNoteCommentEventContextToJSON: (value: ProjectNoteCommentEventContext) => any;
export declare const transformJSONToProjectNoteCommentEventContext: (value: any) => ProjectNoteCommentEventContext;
/**
*
* @export
* @interface ProjectNoteCommentEventContext
*/
export interface ProjectNoteCommentEventContext {
/**
*
* @type {Project}
* @memberof ProjectNoteCommentEventContext
*/
project: Project;
/**
*
* @type {Screen}
* @memberof ProjectNoteCommentEventContext
*/
screen: Screen;
/**
*
* @type {ScreenNote}
* @memberof ProjectNoteCommentEventContext
*/
note: ScreenNote;
}