UNPKG

@zeplin/sdk

Version:
46 lines (45 loc) 954 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 { HorizontalGrid } from './horizontal-grid'; import { VerticalGrid } from './vertical-grid'; export declare const transformGridToJSON: (value: Grid) => any; export declare const transformJSONToGrid: (value: any) => Grid; /** * * @export * @interface Grid */ export interface Grid { /** * * @type {number} * @memberof Grid */ horizontalOffset?: number; /** * * @type {number} * @memberof Grid */ verticalOffset?: number; /** * * @type {VerticalGrid} * @memberof Grid */ vertical?: VerticalGrid; /** * * @type {HorizontalGrid} * @memberof Grid */ horizontal?: HorizontalGrid; }