@zeplin/sdk
Version:
Zeplin API client for JavaScript
34 lines (33 loc) • 926 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 { Project } from './project';
import { ScreenVersionSummary } from './screen-version-summary';
export declare const transformProjectScreenEventContextToJSON: (value: ProjectScreenEventContext) => any;
export declare const transformJSONToProjectScreenEventContext: (value: any) => ProjectScreenEventContext;
/**
*
* @export
* @interface ProjectScreenEventContext
*/
export interface ProjectScreenEventContext {
/**
*
* @type {Project}
* @memberof ProjectScreenEventContext
*/
project: Project;
/**
*
* @type {ScreenVersionSummary}
* @memberof ProjectScreenEventContext
*/
version: ScreenVersionSummary;
}