@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 817 B
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.
*/
export declare const transformHorizontalGridToJSON: (value: HorizontalGrid) => any;
export declare const transformJSONToHorizontalGrid: (value: any) => HorizontalGrid;
/**
*
* @export
* @interface HorizontalGrid
*/
export interface HorizontalGrid {
/**
*
* @type {number}
* @memberof HorizontalGrid
*/
gutterHeight: number;
/**
*
* @type {number}
* @memberof HorizontalGrid
*/
rowHeight: number;
/**
*
* @type {number}
* @memberof HorizontalGrid
*/
numberOfRows?: number;
}