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