@zeplin/sdk
Version:
Zeplin API client for JavaScript
57 lines (56 loc) • 1.25 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 { ColorData } from './color-data';
export declare const transformLayerShadowToJSON: (value: LayerShadow) => any;
export declare const transformJSONToLayerShadow: (value: any) => LayerShadow;
/**
*
* @export
* @interface LayerShadow
*/
export interface LayerShadow {
/**
* Type of the shadow
* @type {string}
* @memberof LayerShadow
*/
type?: 'outer' | 'inner';
/**
* Horizontal offset of the shadow
* @type {number}
* @memberof LayerShadow
*/
offsetX?: number;
/**
* Vertical offset of the shadow
* @type {number}
* @memberof LayerShadow
*/
offsetY?: number;
/**
* Blur radius of the shadow
* @type {number}
* @memberof LayerShadow
*/
blurRadius?: number;
/**
* Spread of the shadow
* @type {number}
* @memberof LayerShadow
*/
spread?: number;
/**
*
* @type {ColorData}
* @memberof LayerShadow
*/
color?: ColorData;
}