@zeplin/sdk
Version:
Zeplin API client for JavaScript
34 lines (33 loc) • 995 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 { TextStyleDesignTokenMetadata } from './text-style-design-token-metadata';
import { TextStyleDesignTokenValue } from './text-style-design-token-value';
export declare const transformTextStyleDesignTokenToJSON: (value: TextStyleDesignToken) => any;
export declare const transformJSONToTextStyleDesignToken: (value: any) => TextStyleDesignToken;
/**
*
* @export
* @interface TextStyleDesignToken
*/
export interface TextStyleDesignToken {
/**
*
* @type {TextStyleDesignTokenValue}
* @memberof TextStyleDesignToken
*/
value: TextStyleDesignTokenValue;
/**
*
* @type {TextStyleDesignTokenMetadata}
* @memberof TextStyleDesignToken
*/
metadata: TextStyleDesignTokenMetadata;
}