UNPKG

@zeplin/sdk

Version:
33 lines (32 loc) 913 B
/** * 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 { EntityReference } from './entity-reference'; export declare const transformComponentSectionReferenceToJSON: (value: ComponentSectionReference) => any; export declare const transformJSONToComponentSectionReference: (value: any) => ComponentSectionReference; /** * * @export * @interface ComponentSectionReference */ export interface ComponentSectionReference { /** * Unique id of the section that contains the component * @type {string} * @memberof ComponentSectionReference */ id: string; /** * * @type {EntityReference} * @memberof ComponentSectionReference */ group?: EntityReference; }