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