UNPKG

@zeplin/sdk

Version:
39 lines (38 loc) 1.03 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 { FlowBoard } from './flow-board'; export declare const transformProjectFlowBoardBuiltEventResourceToJSON: (value: ProjectFlowBoardBuiltEventResource) => any; export declare const transformJSONToProjectFlowBoardBuiltEventResource: (value: any) => ProjectFlowBoardBuiltEventResource; /** * * @export * @interface ProjectFlowBoardBuiltEventResource */ export interface ProjectFlowBoardBuiltEventResource { /** * * @type {string} * @memberof ProjectFlowBoardBuiltEventResource */ id: string; /** * * @type {string} * @memberof ProjectFlowBoardBuiltEventResource */ type: 'FlowBoard'; /** * * @type {FlowBoard} * @memberof ProjectFlowBoardBuiltEventResource */ data: FlowBoard; }