@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 991 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 transformConnectedComponentLinkToJSON: (value: ConnectedComponentLink) => any;
export declare const transformJSONToConnectedComponentLink: (value: any) => ConnectedComponentLink;
/**
*
* @export
* @interface ConnectedComponentLink
*/
export interface ConnectedComponentLink {
/**
* Type of the link
* @type {string}
* @memberof ConnectedComponentLink
*/
type: 'custom' | 'github' | 'gitlab' | 'bitbucket' | 'storybook' | 'styleguidist';
/**
* Url of the link
* @type {string}
* @memberof ConnectedComponentLink
*/
url: string;
/**
* Name for custom links
* @type {string}
* @memberof ConnectedComponentLink
*/
name?: string;
}