UNPKG

@zeplin/sdk

Version:
44 lines (43 loc) 1.07 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. */ export declare const transformComponentGroupToJSON: (value: ComponentGroup) => any; export declare const transformJSONToComponentGroup: (value: any) => ComponentGroup; /** * * @export * @interface ComponentGroup */ export interface ComponentGroup { /** * The unique id of the component section * @type {string} * @memberof ComponentGroup */ id: string; /** * The unix timestamp when the component group was created * @type {number} * @memberof ComponentGroup */ created: number; /** * The name of the component section * @type {string} * @memberof ComponentGroup */ name: string; /** * The description of the component section * @type {string} * @memberof ComponentGroup */ description?: string; }