@zeplin/sdk
Version:
Zeplin API client for JavaScript
39 lines (38 loc) • 900 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.
*/
import { LayerFill } from './layer-fill';
export declare const transformLayerBorderToJSON: (value: LayerBorder) => any;
export declare const transformJSONToLayerBorder: (value: any) => LayerBorder;
/**
*
* @export
* @interface LayerBorder
*/
export interface LayerBorder {
/**
* Position of the border
* @type {string}
* @memberof LayerBorder
*/
position?: 'center' | 'inside' | 'outside';
/**
* Thickness of the border
* @type {number}
* @memberof LayerBorder
*/
thickness?: number;
/**
*
* @type {LayerFill}
* @memberof LayerBorder
*/
fill?: LayerFill;
}