@zeplin/sdk
Version:
Zeplin API client for JavaScript
23 lines (22 loc) • 1.17 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 { StyleguideComponentCreatedEvent } from './styleguide-component-created-event';
import { StyleguideComponentDeletedEvent } from './styleguide-component-deleted-event';
import { StyleguideComponentUpdatedEvent } from './styleguide-component-updated-event';
import { StyleguideComponentVersionCreatedEvent } from './styleguide-component-version-created-event';
export declare const transformJSONToStyleguideComponentEvent: (value: any) => StyleguideComponentEvent;
export declare const transformStyleguideComponentEventToJSON: (value: StyleguideComponentEvent) => any;
/**
* @type StyleguideComponentEvent
* This event is used to notify webhooks about changes related to a components in Zeplin styleguides.
* @export
*/
export declare type StyleguideComponentEvent = StyleguideComponentCreatedEvent | StyleguideComponentDeletedEvent | StyleguideComponentUpdatedEvent | StyleguideComponentVersionCreatedEvent;