@zeplin/sdk
Version:
Zeplin API client for JavaScript
45 lines (44 loc) • 1.19 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 { EntityReference } from './entity-reference';
export declare const transformDesignTokenProjectToJSON: (value: DesignTokenProject) => any;
export declare const transformJSONToDesignTokenProject: (value: any) => DesignTokenProject;
/**
* The source project of the token
* @export
* @interface DesignTokenProject
*/
export interface DesignTokenProject {
/**
* The unique id of the source project
* @type {string}
* @memberof DesignTokenProject
*/
id: string;
/**
* The name of the source project
* @type {string}
* @memberof DesignTokenProject
*/
name: string;
/**
* The target platform of the source project
* @type {string}
* @memberof DesignTokenProject
*/
platform: 'web' | 'ios' | 'android' | 'macos';
/**
*
* @type {EntityReference}
* @memberof DesignTokenProject
*/
linkedStyleguide?: EntityReference;
}