UNPKG

@zeplin/sdk

Version:
58 lines (57 loc) 1.48 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 { ComponentGroup } from './component-group'; import { ComponentSectionVariant } from './component-section-variant'; export declare const transformComponentSectionToJSON: (value: ComponentSection) => any; export declare const transformJSONToComponentSection: (value: any) => ComponentSection; /** * * @export * @interface ComponentSection */ export interface ComponentSection { /** * The unique id of the component section * @type {string} * @memberof ComponentSection */ id: string; /** * The unix timestamp when the component section was created * @type {number} * @memberof ComponentSection */ created: number; /** * The name of the component section * @type {string} * @memberof ComponentSection */ name: string; /** * The description of the component section * @type {string} * @memberof ComponentSection */ description?: string; /** * * @type {Array<ComponentGroup>} * @memberof ComponentSection */ groups: Array<ComponentGroup>; /** * * @type {ComponentSectionVariant} * @memberof ComponentSection */ variant?: ComponentSectionVariant; }