@zeplin/sdk
Version:
Zeplin API client for JavaScript
32 lines (31 loc) • 890 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.
*/
export declare const transformDesignTokenResourceToJSON: (value: DesignTokenResource) => any;
export declare const transformJSONToDesignTokenResource: (value: any) => DesignTokenResource;
/**
* Details of the resource that the design token is generated from.
* @export
* @interface DesignTokenResource
*/
export interface DesignTokenResource {
/**
* The unique id of the resource
* @type {string}
* @memberof DesignTokenResource
*/
id: string;
/**
* The type of the resource
* @type {string}
* @memberof DesignTokenResource
*/
type: 'Color' | 'TextStyle' | 'SpacingToken';
}