UNPKG

@zeplin/sdk

Version:
59 lines (58 loc) 1.7 kB
/** * 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 { ProjectComponentCreatedEventResource } from './project-component-created-event-resource'; import { StyleguideComponentEventContext } from './styleguide-component-event-context'; import { WebhookEventActor } from './webhook-event-actor'; export declare const transformStyleguideComponentCreatedEventToJSON: (value: StyleguideComponentCreatedEvent) => any; export declare const transformJSONToStyleguideComponentCreatedEvent: (value: any) => StyleguideComponentCreatedEvent; /** * * @export * @interface StyleguideComponentCreatedEvent */ export interface StyleguideComponentCreatedEvent { /** * * @type {string} * @memberof StyleguideComponentCreatedEvent */ event: 'styleguide.component'; /** * * @type {string} * @memberof StyleguideComponentCreatedEvent */ action: 'created'; /** * * @type {number} * @memberof StyleguideComponentCreatedEvent */ timestamp: number; /** * * @type {ProjectComponentCreatedEventResource} * @memberof StyleguideComponentCreatedEvent */ resource: ProjectComponentCreatedEventResource; /** * * @type {StyleguideComponentEventContext} * @memberof StyleguideComponentCreatedEvent */ context: StyleguideComponentEventContext; /** * * @type {WebhookEventActor} * @memberof StyleguideComponentCreatedEvent */ actor: WebhookEventActor; }