@zeplin/sdk
Version:
Zeplin API client for JavaScript
45 lines (44 loc) • 1.06 kB
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 { EntityReference } from './entity-reference';
export declare const transformSpacingSectionToJSON: (value: SpacingSection) => any;
export declare const transformJSONToSpacingSection: (value: any) => SpacingSection;
/**
*
* @export
* @interface SpacingSection
*/
export interface SpacingSection {
/**
* The unique id of the section
* @type {string}
* @memberof SpacingSection
*/
id: string;
/**
* The name of the section
* @type {string}
* @memberof SpacingSection
*/
name: string;
/**
* The description of the section
* @type {string}
* @memberof SpacingSection
*/
description?: string;
/**
*
* @type {EntityReference}
* @memberof SpacingSection
*/
baseToken: EntityReference;
}