UNPKG

@zeplin/sdk

Version:
22 lines (21 loc) 1.01 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 { ProjectTextStyleCreatedEvent } from './project-text-style-created-event'; import { ProjectTextStyleDeletedEvent } from './project-text-style-deleted-event'; import { ProjectTextStyleUpdatedEvent } from './project-text-style-updated-event'; export declare const transformJSONToProjectTextStyleEvent: (value: any) => ProjectTextStyleEvent; export declare const transformProjectTextStyleEventToJSON: (value: ProjectTextStyleEvent) => any; /** * @type ProjectTextStyleEvent * This event is used to notify webhooks about changes related to a text styles in the local styleguide of Zeplin projects. * @export */ export declare type ProjectTextStyleEvent = ProjectTextStyleCreatedEvent | ProjectTextStyleDeletedEvent | ProjectTextStyleUpdatedEvent;