UNPKG

@zeplin/sdk

Version:
32 lines (31 loc) 745 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. */ export declare const transformLayerBlurToJSON: (value: LayerBlur) => any; export declare const transformJSONToLayerBlur: (value: any) => LayerBlur; /** * Blur applied to the layer * @export * @interface LayerBlur */ export interface LayerBlur { /** * Type of the blur * @type {string} * @memberof LayerBlur */ type?: 'gaussian' | 'background'; /** * Radius of the blur * @type {number} * @memberof LayerBlur */ radius?: number; }